interface Group<out T>
Represents a group of T.
toList
abstract fun toList(): List<T>
Returns the members of the group as List.
GroupWithNullableEntries
interface GroupWithNullableEntries<out T> : Group<T>
Represents a group of T (where T: Any?) which can be converted to a List<T>
T: Any?
<T>
GroupWithoutNullableEntries
interface GroupWithoutNullableEntries<out T> : Group<T>
Represents a group of T (where T: Any) which can be converted to a List<T>
T: Any