public class ULong extends AbstractUnsignedInt implements ValueType:
Represents a 64-bit unsigned integer.
| Modifier and Type | Member | Description |
|---|---|---|
| public static const | MAX_VALUEMAX_VALUE as ULong = 18_446_744_073_709_551_615ul |
The greatest value representable by an ULong. |
| public static const | MIN_VALUEMIN_VALUE as ULong = 0ul |
The smallest value representable by an ULong. |
| Modifier and Type | Member | Description |
|---|---|---|
| public native | ULongULong() |
Builds the neutral ULong value (0uL). |
| public native | ULong | Builds a ULong from a Boolean value (false = 0, true = 1). |
| public native | ULong | Builds a ULong from a character code point. |
| public native | ULong | Builds a ULong from a Double value. |
| public native | ULong | Builds a ULong from a Float value. |
| public native | ULong | Builds a ULong from a signed 32-bit integer. |
| public native | ULong | Builds a ULong from a signed 64-bit integer. |
| public native | ULongULong(value: String) throws BadValueException |
Builds a ULong from a textual representation. |
| public native | ULong | Builds a ULong from an unsigned 32-bit integer. |
| public native | ULong | Builds a ULong from an unsigned 64-bit integer. |
| Modifier and Type | Member | Description |
|---|---|---|
| public static | parseparse( readonly value as String ) as ULong throws BadValueException: |
Parses an ULong value from text. |
| public native override | toStringtoString() as String |
Converts this value to its textual representation. |
| public static | tryParse | Parses an ULong value from text. |