interface Group<out T>
(source)
Represents a group of T.
abstract fun toList(): List<T>
Returns the members of the group as List. |
class Entries<T : Any> : Group<(Expect<T>.() -> Unit)?>, VarArgHelper<(Expect<T>.() -> Unit)?>
Parameter object to express a Group of identification lambdas. |
|
class Entries<T> : Group<(Expect<T>.() -> Unit)?>, VarArgHelper<(Expect<T>.() -> Unit)?>
Parameter object to express a Group of identification lambdas. |
|
class Entry<T : Any> : Group<(Expect<T>.() -> Unit)?>
Parameter object to express a Group with a single identification lambda. |
|
data class Entry<T : Any> : Group<(Expect<T>.() -> Unit)?>
Parameter object to express a Group with a single identification lambda. |
|
data class Value<out T> : Group<T>
Represents a Group with a single value. |
|
data class Value<T> : Group<T>
Represents a Group with a single value. |
|
class Values<out T> : Group<T>, VarArgHelper<T>
Represents a Group of multiple values. |
|
class Values<out T> : Group<T>, VarArgHelper<T>
Represents a Group of multiple values. |