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