class Long : Number, Comparable<Long>
Represents a 64-bit signed integer. On the JVM, non-nullable values of this type are represented as values of the primitive type long
.
Represents a 64-bit signed integer.
Performs a bitwise AND operation between the two values.
infix fun and(other: Long): Long
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.
operator fun compareTo(other: Byte): Int
operator fun compareTo(other: Short): Int
operator fun compareTo(other: Int): Int
operator fun compareTo(other: Long): Int
operator fun compareTo(other: Float): Int
operator fun compareTo(other: Double): Int
Decrements this value.
operator fun dec(): Long
Divides this value by the other value.
operator fun div(other: Byte): Long
operator fun div(other: Short): Long
operator fun div(other: Int): Long
operator fun div(other: Long): Long
operator fun div(other: Float): Float
operator fun div(other: Double): Double
fun equals(other: Long): Boolean
Indicates whether some other object is "equal to" this one. Implementations must fulfil the following requirements:
fun equals(other: Any?): Boolean
Returns a hash code value for the object. The general contract of hashCode
is:
fun hashCode(): Int
Increments this value.
operator fun inc(): Long
Inverts the bits in this value.
fun inv(): Long
Subtracts the other value from this value.
operator fun minus(other: Byte): Long
operator fun minus(other: Short): Long
operator fun minus(other: Int): Long
operator fun minus(other: Long): Long
operator fun minus(other: Float): Float
operator fun minus(other: Double): Double
Performs a bitwise OR operation between the two values.
infix fun or(other: Long): Long
Adds the other value to this value.
operator fun plus(other: Byte): Long
operator fun plus(other: Short): Long
operator fun plus(other: Int): Long
operator fun plus(other: Long): Long
operator fun plus(other: Float): Float
operator fun plus(other: Double): Double
Creates a range from this value to the specified other value.
operator fun rangeTo(other: Byte): LongRange
operator fun rangeTo(other: Short): LongRange
operator fun rangeTo(other: Int): LongRange
operator fun rangeTo(other: Long): LongRange
Calculates the remainder of dividing this value by the other value.
operator fun rem(other: Byte): Long
operator fun rem(other: Short): Long
operator fun rem(other: Int): Long
operator fun rem(other: Long): Long
operator fun rem(other: Float): Float
operator fun rem(other: Double): Double
Shifts this value left by the bitCount number of bits.
infix fun shl(bitCount: Int): Long
Shifts this value right by the bitCount number of bits, filling the leftmost bits with copies of the sign bit.
infix fun shr(bitCount: Int): Long
Multiplies this value by the other value.
operator fun times(other: Byte): Long
operator fun times(other: Short): Long
operator fun times(other: Int): Long
operator fun times(other: Long): Long
operator fun times(other: Float): Float
operator fun times(other: Double): Double
Returns this value.
fun toLong(): Long
Returns a string representation of the object.
fun toString(): String
Returns the negative of this value.
operator fun unaryMinus(): Long
Returns this value.
operator fun unaryPlus(): Long
Shifts this value right by the bitCount number of bits, filling the leftmost bits with zeros.
infix fun ushr(bitCount: Int): Long
Performs a bitwise XOR operation between the two values.
infix fun xor(other: Long): Long
A constant holding the maximum value an instance of Long can have.
const val MAX_VALUE: Long
A constant holding the minimum value an instance of Long can have.
const val MIN_VALUE: Long
The number of bits used to represent an instance of Long in a binary form.
const val SIZE_BITS: Int
The number of bytes used to represent an instance of Long in a binary form.
const val SIZE_BYTES: Int
Ensures that this value is not less than the specified minimumValue.
fun Long.coerceAtLeast(minimumValue: Long): Long
fun <T : Comparable<T>> T.coerceAtLeast(minimumValue: T): T
Ensures that this value is not greater than the specified maximumValue.
fun Long.coerceAtMost(maximumValue: Long): Long
fun <T : Comparable<T>> T.coerceAtMost(maximumValue: T): T
Ensures that this value lies in the specified range minimumValue..maximumValue.
fun Long.coerceIn( minimumValue: Long, maximumValue: Long ): Long
fun <T : Comparable<T>> T.coerceIn( minimumValue: T?, maximumValue: T? ): T
Ensures that this value lies in the specified range.
fun Long.coerceIn(range: ClosedRange<Long>): Long
fun <T : Comparable<T>> T.coerceIn( range: ClosedFloatingPointRange<T> ): T
fun <T : Comparable<T>> T.coerceIn(range: ClosedRange<T>): T
fun <R : Any> Long.convert(): R
Returns a progression from this value down to the specified to value with the step -1.
infix fun Long.downTo(to: Byte): LongProgression
infix fun Long.downTo(to: Int): LongProgression
infix fun Long.downTo(to: Long): LongProgression
infix fun Long.downTo(to: Short): LongProgression
fun <R : Number> Number.narrow(): R
Creates a range from this Comparable value to the specified that value.
operator fun <T : Comparable<T>> T.rangeTo( that: T ): ClosedRange<T>
fun <R : Number> Number.signExtend(): R
Returns the value of this Long number as a BigDecimal.
fun Long.toBigDecimal(): BigDecimal
fun Long.toBigDecimal(mathContext: MathContext): BigDecimal
Returns the value of this Long number as a BigInteger.
fun Long.toBigInteger(): BigInteger
fun <T : CPointed> Long.toCPointer(): CPointer<T>?
Returns a range from this value up to but excluding the specified to value.
infix fun Long.until(to: Byte): LongRange
infix fun Long.until(to: Int): LongRange
infix fun Long.until(to: Long): LongRange
infix fun Long.until(to: Short): LongRange
© 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/-long/index.html