6 lines
81 B
Kotlin
6 lines
81 B
Kotlin
package com.infendro.bytes.int
|
|
|
|
operator fun Int.not(): Int {
|
|
return inv()
|
|
}
|