definition: |
split :: (a -> Bool) -> [a] -> [[a]] split _ [] = [[]] split p (x:xs) | p x = [] : split p xs | otherwise = let (ys:yss) = split p xs in (x:ys):yss |
demand: |
argument 2 |
deterministic: |
deterministic operation |
documentation: |
--- Splits a list into components delimited by separators, --- where the predicate returns True for a separator element. --- The resulting components do not contain the separators. --- Two adjacent separators result in an empty component in the output. --- --- split (=='a') "aabbaca" == ["","","bb","c",""] --- split (=='a') "" == [""] |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{[]}) |-> {:} || (_,{:}) |-> {:}} |
name: |
split |
precedence: |
no precedence defined |
result-values: |
{:} |
signature: |
(a -> Prelude.Bool) -> [a] -> [[a]] |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |