W3cubDocs

/Kotlin

takeLowestOneBit

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
@ExperimentalUnsignedTypes fun UInt.takeLowestOneBit(): UInt

Returns a number having a single bit set in the position of the least significant set bit of this UInt number, or zero, if this number is zero.

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
@ExperimentalUnsignedTypes fun ULong.takeLowestOneBit(): ULong

Returns a number having a single bit set in the position of the least significant set bit of this ULong number, or zero, if this number is zero.

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
@ExperimentalUnsignedTypes fun UByte.takeLowestOneBit(): UByte

Returns a number having a single bit set in the position of the least significant set bit of this UByte number, or zero, if this number is zero.

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
@ExperimentalUnsignedTypes fun UShort.takeLowestOneBit(): UShort

Returns a number having a single bit set in the position of the least significant set bit of this UShort number, or zero, if this number is zero.

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun Int.takeLowestOneBit(): Int

Returns a number having a single bit set in the position of the least significant set bit of this Int number, or zero, if this number is zero.

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun Long.takeLowestOneBit(): Long

Returns a number having a single bit set in the position of the least significant set bit of this Long number, or zero, if this number is zero.

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun Byte.takeLowestOneBit(): Byte

Returns a number having a single bit set in the position of the least significant set bit of this Byte number, or zero, if this number is zero.

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun Short.takeLowestOneBit(): Short

Returns a number having a single bit set in the position of the least significant set bit of this Short number, or zero, if this number is zero.

© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/take-lowest-one-bit.html