CurryInfo: base-3.3.0 / Data.List.group

definition:
group :: Eq a => [a] -> [[a]]
group = groupBy (==)
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Splits the list argument into a list of lists of equal adjacent
--- elements.
---
--- Example: `(group [1,2,2,3,3,3,4]) = [[1],[2,2],[3,3,3],[4]]`
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> {groupBy}}
name:
group
precedence:
no precedence defined
result-values:
{groupBy}
signature:
Prelude.Eq a => [a] -> [[a]]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term