Is there Kotlin analogue to Java ^= (xor and assign) operator?
For instance, in Java we can simply write
a ^= b
// a = a ^ b
It looks like in Kotlin we need to assign value explicitly
a = a xor b
Is it possible to avoid duplication of variable a in Kotlin code?