class Values<out T> : GroupWithoutNullableEntries<T>, GroupWithNullableEntries<T>, VarArgHelper<T>
Represents a Group of multiple values.
Values(expected: T, vararg otherExpected: T)
Represents a Group of multiple values. |
val expected: T
The first argument in the argument list |
|
vararg val otherExpected: Array<out T>
The second argument in the argument list |
open val mapArguments: ArgumentMapperBuilder<T>
Creates an ArgumentMapperBuilder which allows to map expected and otherExpected. |
fun toList(): List<T>
Returns the members of the group as List. |