Documentation / dataflow-async / com.femastudios.dataflow.async.extensions / kotlin.Byte / until
Go to reference
Go to reference
until
@JvmName("untilInt") infix fun Byte.until(to: Attribute<Int>): Attribute<IntRange>
@JvmName("untilLong") infix fun Byte.until(to: Attribute<Long>): Attribute<LongRange>
@JvmName("untilShort") infix fun Byte.until(to: Attribute<Short>): Attribute<IntRange>
infix fun Byte.until(to: Attribute<Byte>): Attribute<IntRange>
Same as until, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling until in the transformation function.
This is simply a convenience function.
See Also