doc / ch.tutteli.atrium.domain.builders.utils / Group

Group

interface Group<out T>

Represents a group of T.

Functions

toList

abstract fun toList(): List<T>

Returns the members of the group as List.

Inheritors

GroupWithNullableEntries

interface GroupWithNullableEntries<out T> : Group<T>

Represents a group of T (where T: Any?) which can be converted to a List<T>

GroupWithoutNullableEntries

interface GroupWithoutNullableEntries<out T> : Group<T>

Represents a group of T (where T: Any) which can be converted to a List<T>