CurryInfo: base-3.4.0 / Data.List.group

definition: Info
 
group :: Eq a => [a] -> [[a]]
group = groupBy (==)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
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: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> {groupBy}}
name: Info
 group
precedence: Info
 no precedence defined
result-values: Info
 {groupBy}
signature: Info
 Prelude.Eq a => [a] -> [[a]]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term