CurryInfo: base-3.4.0 / Prelude.eqString

definition: Info
 
eqString :: String -> String -> Bool
eqString [] [] = True
eqString [] (_:_) = False
eqString (_:_) [] = False
eqString (x:xs) (y:ys) = eqChar x y && eqString xs ys
demand: Info
 arguments 1 2
deterministic: Info
 deterministic operation
documentation: Info
 
Equality on strings. We use a specialized implementation to aviod problems with kics2.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({[]},{[]}) |-> {True} || ({[]},{:}) |-> {False} || ({:},{[]}) |-> {False} || ({:},{:}) |-> _}
name: Info
 eqString
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 [Char] -> [Char] -> Bool
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms