CurryInfo: base-3.4.0 / Data.List.isSuffixOf

definition: Info
 
isSuffixOf :: Eq a => [a] -> [a] -> Bool
isSuffixOf xs ys = isPrefixOf (reverse xs) (reverse ys)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Checks whether a list is a suffix of another.
@param xs - a list
@param ys - a list
@return `True` if `xs` is a suffix of `ys`
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> _}
name: Info
 isSuffixOf
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Eq a => [a] -> [a] -> Prelude.Bool
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms