UInt

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
infix inline fun and(other: UInt): UInt

Performs a bitwise AND operation between the two values.

Link copied to clipboard
inline operator fun compareTo(other: UByte): Int
open inline operator override fun compareTo(other: UInt): Int
inline operator fun compareTo(other: ULong): Int
inline operator fun compareTo(other: UShort): Int

Compares this value with the specified value for order. Returns zero if this value is equal to the specified other value, a negative number if it's less than other, or a positive number if it's greater than other.

Link copied to clipboard
inline operator fun dec(): UInt

Decrements this value.

Link copied to clipboard
inline operator fun div(other: UByte): UInt
inline operator fun div(other: UInt): UInt
inline operator fun div(other: ULong): ULong
inline operator fun div(other: UShort): UInt

Divides this value by the other value, truncating the result to an integer that is closer to zero.

Link copied to clipboard
inline fun floorDiv(other: UByte): UInt
inline fun floorDiv(other: UInt): UInt
inline fun floorDiv(other: ULong): ULong
inline fun floorDiv(other: UShort): UInt

Divides this value by the other value, flooring the result to an integer that is closer to negative infinity.

Link copied to clipboard
inline operator fun inc(): UInt

Increments this value.

Link copied to clipboard
inline fun inv(): UInt

Inverts the bits in this value.

Link copied to clipboard
inline operator fun minus(other: UByte): UInt
inline operator fun minus(other: UInt): UInt
inline operator fun minus(other: ULong): ULong
inline operator fun minus(other: UShort): UInt

Subtracts the other value from this value.

Link copied to clipboard
inline fun mod(other: UByte): UByte
inline fun mod(other: UInt): UInt
inline fun mod(other: ULong): ULong
inline fun mod(other: UShort): UShort

Calculates the remainder of flooring division of this value by the other value.

Link copied to clipboard
infix inline fun or(other: UInt): UInt

Performs a bitwise OR operation between the two values.

Link copied to clipboard
inline operator fun plus(other: UByte): UInt
inline operator fun plus(other: UInt): UInt
inline operator fun plus(other: ULong): ULong
inline operator fun plus(other: UShort): UInt

Adds the other value to this value.

Link copied to clipboard
inline operator fun rangeTo(other: UInt): UIntRange

Creates a range from this value to the specified other value.

Link copied to clipboard
inline operator fun rem(other: UByte): UInt
inline operator fun rem(other: UInt): UInt
inline operator fun rem(other: ULong): ULong
inline operator fun rem(other: UShort): UInt

Calculates the remainder of truncating division of this value by the other value.

Link copied to clipboard
infix inline fun shl(bitCount: Int): UInt

Shifts this value left by the bitCount number of bits.

Link copied to clipboard
infix inline fun shr(bitCount: Int): UInt

Shifts this value right by the bitCount number of bits, filling the leftmost bits with zeros.

Link copied to clipboard
inline operator fun times(other: UByte): UInt
inline operator fun times(other: UInt): UInt
inline operator fun times(other: ULong): ULong
inline operator fun times(other: UShort): UInt

Multiplies this value by the other value.

Link copied to clipboard
inline fun toByte(): Byte

Converts this UInt value to Byte.

Link copied to clipboard
inline fun toDouble(): Double

Converts this UInt value to Double.

Link copied to clipboard
inline fun toFloat(): Float

Converts this UInt value to Float.

Link copied to clipboard
inline fun toInt(): Int

Converts this UInt value to Int.

Link copied to clipboard
inline fun toLong(): Long

Converts this UInt value to Long.

Link copied to clipboard
inline fun toShort(): Short

Converts this UInt value to Short.

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
inline fun toUByte(): UByte

Converts this UInt value to UByte.

Link copied to clipboard
inline fun toUInt(): UInt

Returns this value.

Link copied to clipboard
inline fun toULong(): ULong

Converts this UInt value to ULong.

Link copied to clipboard
inline fun toUShort(): UShort

Converts this UInt value to UShort.

Link copied to clipboard
infix inline fun xor(other: UInt): UInt

Performs a bitwise XOR operation between the two values.

Extensions

Link copied to clipboard
fun UInt.coerceAtLeast(minimumValue: UInt): UInt

Ensures that this value is not less than the specified minimumValue.

Link copied to clipboard
fun UInt.coerceAtMost(maximumValue: UInt): UInt

Ensures that this value is not greater than the specified maximumValue.

Link copied to clipboard
fun UInt.coerceIn(minimumValue: UInt, maximumValue: UInt): UInt

Ensures that this value lies in the specified range minimumValue..maximumValue.

Ensures that this value lies in the specified range.

Link copied to clipboard
inline external fun <R : Any> UInt.convert(): R
Link copied to clipboard

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

Link copied to clipboard
inline fun UInt.countOneBits(): Int

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

Link copied to clipboard

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

Link copied to clipboard

Returns a progression from this value down to the specified to value with the step -1.

Link copied to clipboard

Rotates the binary representation of this UInt number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.

Link copied to clipboard

Rotates the binary representation of this UInt number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.

Link copied to clipboard

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

Link copied to clipboard
inline 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.

Link copied to clipboard
fun UInt.toString(radix: Int): String

Returns a string representation of this Int value in the specified radix.

Link copied to clipboard
infix fun UInt.until(to: UInt): UIntRange

Returns a range from this value up to but excluding the specified to value.