程序包 amo.lib.linq
接口 Grouping<TKey,TElement>
- 类型参数:
TKey- type used to group the TElementsTElement- type of the elements grouped through the TKey
public interface Grouping<TKey,TElement>
Represents a collection of TElements that had been grouped through the TKey.
-
方法概要
修饰符和类型 方法 说明 Stream<TElement>getElements()TKeygetKey()
-
方法详细资料
-
getKey
TKey getKey()- 返回:
- the key used to perform the grouping.
-
getElements
- 返回:
- a Stream of grouped elements.
-