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

Group

interface Group<out T> (source)

Functions

toList

abstract fun toList(): List<T>

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 : Any> : Group<T>

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