UInt
classin packageklyn
public class UInt extends AbstractUnsignedInt implements ValueType:
All Implemented Interfaces: ValueType
Represents a 32-bit unsigned integer.
Properties inherited from Object: type
Constructors
Modifier and Type Member Description
public native UInt Builds the neutral UInt value (`0u`).
Methods
Modifier and Type Member Description
public static parse
parse( readonly value as String ) as UInt throws BadValueException:
No summary.
public override readonly toString
toString() as String:
No summary.
public static tryParse
tryParse( readonly value as String, out result as UInt ) as Boolean:
No summary.
Methods inherited from Object: fromJson, toDict, toJson, toString, toXml
Operators
Modifier and Type Member Description
public native static operator!=( readonly a as UInt, readonly b as UInt ) as Boolean No summary.
public native static operator%( readonly a as UInt, readonly b as UInt ) as Int No summary.
public native static operator%=( readonly a as UInt, readonly b as UInt ) as Void No summary.
public native static operator*( readonly a as UInt, readonly b as UInt ) as Int No summary.
public native static operator**( readonly value as UInt, readonly power as UInt ) as Int No summary.
public native static operator**=( readonly value as UInt, readonly power as UInt ) as Void No summary.
public native static operator*=( readonly a as UInt, readonly b as UInt ) as Void No summary.
public native static operator+( readonly a as UInt, readonly b as UInt ) as Int No summary.
public native static operator+=( readonly a as UInt, readonly b as UInt ) as Void No summary.
public native static operator-( readonly a as UInt, readonly b as UInt ) as Int No summary.
public native static operator-=( readonly a as UInt, readonly b as UInt ) as Void No summary.
public native static operator/( readonly a as UInt, readonly b as UInt ) as Int No summary.
public native static operator//( readonly a as UInt, readonly b as UInt ) as Int No summary.
public native static operator//=( readonly a as UInt, readonly b as UInt ) as Void No summary.
public native static operator/=( readonly a as UInt, readonly b as UInt ) as Void No summary.
public native static operator<( readonly a as UInt, readonly b as UInt ) as Boolean No summary.
public native static operator<=( readonly a as UInt, readonly b as UInt ) as Boolean No summary.
public native static operator==( readonly a as UInt, readonly b as UInt ) as Boolean No summary.
public native static operator>( readonly a as UInt, readonly b as UInt ) as Boolean No summary.
public native static operator>=( readonly a as UInt, readonly b as UInt ) as Boolean No summary.