ULong
classin packageklyn
public class ULong extends AbstractUnsignedInt implements ValueType:
All Implemented Interfaces: ValueType
Represents a 64-bit unsigned integer.
Properties inherited from Object: type
Constructors
Modifier and Type Member Description
public native ULong Builds the neutral ULong value (`0uL`).
public native ULong
ULong(value: Double)
Builds an ULong from a Double value.
public native ULong
ULong(value: Float)
Builds an ULong from a Float value.
public native ULong
ULong(value: String) throws BadValueException
Builds an ULong from a textual representation.
Methods
Modifier and Type Member Description
public static parse
parse( readonly value as String ) as ULong throws BadValueException:
Parses an ULong value from text.
public override toString
toString() as String:
Converts this value to its textual representation.
public static tryParse
tryParse( readonly value as String, out result as ULong ) as Boolean:
Parses an ULong value from text.
Methods inherited from Object: fromJson, toDict, toJson, toString, toXml
Operators
Modifier and Type Member Description
public native static operator!=( readonly a as ULong, readonly b as ULong ) as Boolean No summary.
public native static operator%( readonly a as ULong, readonly b as ULong ) as ULong No summary.
public native static operator%=( readonly a as ULong, readonly b as ULong ) as Void No summary.
public native static operator*( readonly a as ULong, readonly b as ULong ) as ULong No summary.
public native static operator**( readonly value as ULong, readonly power as UInt ) as ULong No summary.
public native static operator**=( readonly value as ULong, readonly power as UInt ) as Void No summary.
public native static operator*=( readonly a as ULong, readonly b as ULong ) as Void No summary.
public native static operator+( readonly a as ULong, readonly b as ULong ) as ULong Native arithmetic operators.
public native static operator+=( readonly a as ULong, readonly b as ULong ) as Void Native compound assignment operators.
public native static operator-( readonly a as ULong, readonly b as ULong ) as ULong No summary.
public native static operator-=( readonly a as ULong, readonly b as ULong ) as Void No summary.
public native static operator/( readonly a as ULong, readonly b as ULong ) as ULong No summary.
public native static operator//( readonly a as ULong, readonly b as ULong ) as ULong No summary.
public native static operator//=( readonly a as ULong, readonly b as ULong ) as Void No summary.
public native static operator/=( readonly a as ULong, readonly b as ULong ) as Void No summary.
public native static operator<( readonly a as ULong, readonly b as ULong ) as Boolean No summary.
public native static operator<=( readonly a as ULong, readonly b as ULong ) as Boolean No summary.
public native static operator==( readonly a as ULong, readonly b as ULong ) as Boolean Native comparison operators.
public native static operator>( readonly a as ULong, readonly b as ULong ) as Boolean No summary.
public native static operator>=( readonly a as ULong, readonly b as ULong ) as Boolean No summary.