Documentation / dataflow-async / com.femastudios.dataflow.async.extensions / kotlin.Byte / times
Go to reference
Go to reference
times
@JvmName("timesDouble") operator fun Byte.times(other: Attribute<Double>): Attribute<Double>
@JvmName("timesFloat") operator fun Byte.times(other: Attribute<Float>): Attribute<Float>
@JvmName("timesInt") operator fun Byte.times(other: Attribute<Int>): Attribute<Int>
@JvmName("timesLong") operator fun Byte.times(other: Attribute<Long>): Attribute<Long>
@JvmName("timesShort") operator fun Byte.times(other: Attribute<Short>): Attribute<Int>
operator fun Byte.times(other: Attribute<Byte>): Attribute<Int>
Same as times, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling times in the transformation function.
This is simply a convenience function.
See Also