countLeadingZeroBits

Common
JVM
JS
Native
1.3
@ExperimentalStdlibApi @ExperimentalUnsignedTypes fun UInt.countLeadingZeroBits(): Int

Counts the number of consecutive most significant bits that are zero in the binary representation of this UInt number.

Common
JVM
JS
Native
1.3
@ExperimentalStdlibApi @ExperimentalUnsignedTypes fun ULong.countLeadingZeroBits(): Int

Counts the number of consecutive most significant bits that are zero in the binary representation of this ULong number.

Common
JVM
JS
Native
1.3
@ExperimentalStdlibApi @ExperimentalUnsignedTypes fun UByte.countLeadingZeroBits(): Int

Counts the number of consecutive most significant bits that are zero in the binary representation of this UByte number.

Common
JVM
JS
Native
1.3
@ExperimentalStdlibApi @ExperimentalUnsignedTypes fun UShort.countLeadingZeroBits(): Int

Counts the number of consecutive most significant bits that are zero in the binary representation of this UShort number.

Common
JVM
JS
Native
1.3
@ExperimentalStdlibApi fun Int.countLeadingZeroBits(): Int

Counts the number of consecutive most significant bits that are zero in the binary representation of this Int number.

Common
JVM
JS
Native
1.3
@ExperimentalStdlibApi fun Long.countLeadingZeroBits(): Int

Counts the number of consecutive most significant bits that are zero in the binary representation of this Long number.

Common
JVM
JS
Native
1.3
@ExperimentalStdlibApi fun Byte.countLeadingZeroBits(): Int

Counts the number of consecutive most significant bits that are zero in the binary representation of this Byte number.

Common
JVM
JS
Native
1.3
@ExperimentalStdlibApi fun Short.countLeadingZeroBits(): Int

Counts the number of consecutive most significant bits that are zero in the binary representation of this Short number.