CurryInfo: property-prover-2.0.0 / Utils.showWithLineNums

definition:
showWithLineNums :: String -> String
showWithLineNums txt
  = let txtlines  = lines txt
        maxlog    = ilog (length txtlines + 1)
        showNum n = replicate (maxlog - ilog n) ' ' ++ show n ++ ": "
    in unlines . zipWith (++) (map showNum [1 ..]) $ txtlines
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Shows a text with line numbers prefixed:
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
showWithLineNums
precedence:
no precedence defined
result-values:
_
signature:
String -> String
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term