UShort

value class UShort : Comparable<UShort>

Types

Companion
Link copied to clipboard
object Companion

Functions

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

Performs a bitwise AND operation between the two values.

compareTo
Link copied to clipboard
inline operator fun compareTo(other: UByte): Int
inline operator fun compareTo(other: UInt): Int
inline operator fun compareTo(other: ULong): Int
open inline operator override 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.

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

Decrements this value.

div
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.

floorDiv
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.

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

Increments this value.

inv
Link copied to clipboard
inline fun inv(): UShort

Inverts the bits in this value.

minus
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.

mod
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.

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

Performs a bitwise OR operation between the two values.

plus
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.

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

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

rem
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.

times
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.

toByte
Link copied to clipboard
inline fun toByte(): Byte

Converts this UShort value to Byte.

toDouble
Link copied to clipboard
inline fun toDouble(): Double

Converts this UShort value to Double.

toFloat
Link copied to clipboard
inline fun toFloat(): Float

Converts this UShort value to Float.

toInt
Link copied to clipboard
inline fun toInt(): Int

Converts this UShort value to Int.

toLong
Link copied to clipboard
inline fun toLong(): Long

Converts this UShort value to Long.

toShort
Link copied to clipboard
inline fun toShort(): Short

Converts this UShort value to Short.

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

Converts this UShort value to UByte.

toUInt
Link copied to clipboard
inline fun toUInt(): UInt

Converts this UShort value to UInt.

toULong
Link copied to clipboard
inline fun toULong(): ULong

Converts this UShort value to ULong.

toUShort
Link copied to clipboard
inline fun toUShort(): UShort

Returns this value.

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

Performs a bitwise XOR operation between the two values.

Extensions

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

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

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

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

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

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

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

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

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

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

countTrailingZeroBits
Link copied to clipboard
inline fun UShort.countTrailingZeroBits(): Int

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

downTo
Link copied to clipboard
infix fun UShort.downTo(to: UShort): UIntProgression

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

rotateLeft
Link copied to clipboard
inline fun UShort.rotateLeft(bitCount: Int): UShort

Rotates the binary representation of this UShort 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.

rotateRight
Link copied to clipboard
inline fun UShort.rotateRight(bitCount: Int): UShort

Rotates the binary representation of this UShort 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.

takeHighestOneBit
Link copied to clipboard
inline fun UShort.takeHighestOneBit(): UShort

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

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

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

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

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

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