Ulong

data class Ulong(v: Long) : Number, Comparable<Ulong>

Created by GBarbieri on 20.03.2017.

Constructors

Ulong
Link copied to clipboard
fun Ulong(number: Number)
Ulong
Link copied to clipboard
fun Ulong(string: String, base: Int = 10)
Ulong
Link copied to clipboard
fun Ulong(v: Long = 0)

Types

Companion
Link copied to clipboard
object Companion
UlongIterator
Link copied to clipboard
class UlongIterator(ulongRange: Ulong.UlongRange) : Iterator<Ulong>
UlongRange
Link copied to clipboard
class UlongRange(start: Ulong, endInclusive: Ulong) : ClosedRange<Ulong> , Iterable<Ulong>

Functions

and
Link copied to clipboard
infix fun and(b: Long): Ulong
infix fun and(b: Ulong): Ulong
compareTo
Link copied to clipboard
operator fun compareTo(other: Long): Int
open operator override fun compareTo(other: Ulong): Int
component1
Link copied to clipboard
operator fun component1(): Long
copy
Link copied to clipboard
fun copy(v: Long = 0): Ulong
dec
Link copied to clipboard
operator fun dec(): Ulong
div
Link copied to clipboard
infix operator fun div(b: Long): Ulong
infix operator fun div(b: Ulong): Ulong
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
inc
Link copied to clipboard
operator fun inc(): Ulong
inv
Link copied to clipboard
fun inv(): Ulong
minus
Link copied to clipboard
infix operator fun minus(b: Long): Ulong
infix operator fun minus(b: Ulong): Ulong
or
Link copied to clipboard
infix fun or(b: Long): Ulong
infix fun or(b: Ulong): Ulong
plus
Link copied to clipboard
infix operator fun plus(b: Long): Ulong
infix operator fun plus(b: Ulong): Ulong
rangeTo
Link copied to clipboard
operator fun rangeTo(b: Ulong): Ulong.UlongRange
rem
Link copied to clipboard
infix operator fun rem(b: Long): Ulong
infix operator fun rem(b: Ulong): Ulong
shl
Link copied to clipboard
infix fun shl(b: Int): Ulong
shr
Link copied to clipboard
infix fun shr(b: Int): Ulong
times
Link copied to clipboard
infix operator fun times(b: Long): Ulong
infix operator fun times(b: Ulong): Ulong
toBigInt
Link copied to clipboard
fun toBigInt(): BigInteger
toByte
Link copied to clipboard
open override fun toByte(): Byte
toChar
Link copied to clipboard
open override fun toChar(): Char
toDouble
Link copied to clipboard
open override fun toDouble(): Double
toFloat
Link copied to clipboard
open override fun toFloat(): Float
toInt
Link copied to clipboard
open override fun toInt(): Int
toLong
Link copied to clipboard
open override fun toLong(): Long
toShort
Link copied to clipboard
open override fun toShort(): Short
toString
Link copied to clipboard
open override fun toString(): String
fun toString(radix: Int): String
fun toString(format: String): String
xor
Link copied to clipboard
infix fun xor(b: Long): Ulong
infix fun xor(b: Ulong): Ulong

Properties

v
Link copied to clipboard
var v: Long = 0

Sources

(source)
Link copied to clipboard