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