We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9eefbb commit b7b30f2Copy full SHA for b7b30f2
src/main/kotlin/glm_/extensions.kt
@@ -48,7 +48,7 @@ infix fun Char.shl(bits: Int) = i shl bits
48
operator fun Char.compareTo(other: Int) = i.compareTo(other)
49
operator fun Int.plus(b: Char) = this + b.i
50
operator fun Int.minus(b: Char) = this - b.i
51
-fun Int.xor(b: Char) = this xor b.i
+infix fun Int.xor(b: Char) = this xor b.i
52
53
val Int.uc get() = (this % 256).c // TODO others
54
0 commit comments