CurryInfo: curry-repl-1.2.0 / REPL.Utils.lpad

definition:
lpad :: Int -> String -> String
lpad n s = replicate (n - length s) ' ' ++ s
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Extend a String to a given minimal length by adding *leading* spaces.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
lpad
precedence:
no precedence defined
result-values:
_
signature:
Prelude.Int -> String -> String
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms