CurryInfo: base-3.3.0 / Data.List.isInfixOf

definition:
isInfixOf :: Eq a => [a] -> [a] -> Bool
isInfixOf xs ys = any (isPrefixOf xs) (tails ys)
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- 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:
(_, _, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_) |-> _}
name:
isInfixOf
precedence:
no precedence defined
result-values:
_
signature:
Prelude.Eq a => [a] -> [a] -> Prelude.Bool
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms