The type of the elements in the source sequence.
The type of the grouping key computed for each element in the source sequence.
A function to extract the key for each element.
Optional
signal: AbortSignalA sequence of async-iterable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
Groups the elements of an async-iterable sequence and selects the resulting elements by using a specified function.
The type of the elements in the source sequence.
The type of the grouping key computed for each element in the source sequence.
The type of the elements within the groups computed for each element in the source sequence.
A function to extract the key for each element.
Optional
signal: AbortSignalOptional
elementSelector: ((value, signal?) => TValue | Promise<TValue>)A function to map each source element to an element in an async-enumerable group.
Optional
signal: AbortSignalA sequence of async-iterable groups, each of which corresponds to a unique key value, containing all elements that share that same key value.
Generated using TypeDoc
Groups the elements of an async-iterable sequence and selects the resulting elements by using a specified function.