class Int
Static Methods
Methods
fun sourceult<I: Integral>(other: I): Bool
Unsigned comparison operators (treats both operands as unsigned numbers).
fun sourceclz(): Int
Returns number of leading zeroes (MSB), or 64 if the value is 0. NOTE: Overridden in some back ends with a faster version.
fun sourcectz(): Int
Returns number of trailing zeroes (LSB), or 64 if the value is 0. NOTE: Overridden in some back ends with a faster version.
fun sourcepopcount(): Int
Returns the number of "one" bits in the value. NOTE: Overridden in some back ends with a faster version.