countOneBits

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

Counts the number of set bits in the binary representation of this UInt number.

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

Counts the number of set bits in the binary representation of this ULong number.

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

Counts the number of set bits in the binary representation of this UByte number.

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

Counts the number of set bits in the binary representation of this UShort number.

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

Counts the number of set bits in the binary representation of this Int number.

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

Counts the number of set bits in the binary representation of this Long number.

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

Counts the number of set bits in the binary representation of this Byte number.

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

Counts the number of set bits in the binary representation of this Short number.