CurryInfo: base-3.4.0 / Data.List.isInfixOf

definition: Info
 
isInfixOf :: Eq a => [a] -> [a] -> Bool
isInfixOf xs ys = any (isPrefixOf xs) (tails ys)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Checks whether a list is contained in another.
@param xs - a list
@param ys - a list
@return True if xs is contained in ys
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> _}
name: Info
 isInfixOf
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