ValuesWithReason

data class ValuesWithReason : Iterable<ValueWithReason>

ValuesWithReason is essentially the same as List of ValueWithReason. Due to type erasure we cannot use the list directly. Instances of this type should always created using the valuesWithReason factory method.

Functions

Link copied to clipboard
open fun forEach(p0: Consumer<in ValueWithReason>)
Link copied to clipboard
open operator override fun iterator(): Iterator<ValueWithReason>
Link copied to clipboard
open fun spliterator(): Spliterator<ValueWithReason>