definition:
|
lowerFirst :: String -> String
lowerFirst (y:ys) = (toLower y) : ys
lowerFirst [] = [] -- this case should not occur, but one never knows...
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------
-- lower the first character in a string
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({:}) |-> {:} || ({[]}) |-> {[]}}
|
name:
|
lowerFirst
|
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
|