definition:
|
groupBy :: Value a -> GroupByTail -> GroupBy
groupBy c gbTail = GroupBy (toCValue c) gbTail
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
---Constructor for group-by-clause
---@param c - The Column that should be grouped by
---@param gbTail - GroupByTail, i.e. more columns or a having-clause
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {GroupBy}}
|
name:
|
groupBy
|
precedence:
|
no precedence defined
|
result-values:
|
{GroupBy}
|
signature:
|
Value a -> GroupByTail -> GroupBy
|
solution-complete:
|
operationally complete operation
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|