CurryInfo: abstract-haskell-3.0.0 / AbstractHaskell.Goodies.lowerFirst

definition: Info
 
lowerFirst :: String -> String
lowerFirst []     = [] -- this case should not occur, but one never knows...
lowerFirst (y:ys) = toLower y : ys
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
lower the first character in a string
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({[]}) |-> {[]} || ({:}) |-> {:}}
name: Info
 lowerFirst
precedence: Info
 no precedence defined
result-values: Info
 {:,[]}
signature: Info
 String -> String
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term