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

definition:
rpad :: Int -> String -> String
rpad n s = s ++ replicate (n - length s) ' '
demand:
argument 2
deterministic:
deterministic operation
documentation:
--- Extend a String to a given minimal length by adding *trailing* spaces.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
rpad
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