fun xor(value: UInt32!): UInt32!
(source)
Return a bit-wise XOR of this value and the supplied value.
If this value and the supplied value are different lengths, then the shorter will be zero-padded to the left.
value
- UInt32!: the value to perform the operation with
IllegalArgumentException
- if more than 8 bytes are supplied
Return
UInt32!: the result of a bit-wise XOR
fun xor(value: Int): UInt32!
(source)
Return a bit-wise XOR of this value and the supplied value.
If this value and the supplied value are different lengths, then the shorter will be zero-padded to the left.
value
- Int: the value to perform the operation with
IllegalArgumentException
- if more than 8 bytes are supplied
Return
UInt32!: the result of a bit-wise XOR
fun xor(bytes: Bytes!): UInt32!
(source)
Return a bit-wise XOR of this value and the supplied bytes.
bytes
- Bytes!: the bytes to perform the operation with
IllegalArgumentException
- if more than 8 bytes are supplied
Return
UInt32!: the result of a bit-wise XOR