public class UShort extends AbstractUnsignedInt implements ValueType:
Represents a 16-bit unsigned integer.
| Modifier and Type | Member | Description |
|---|---|---|
| public static const | MAX_VALUEMAX_VALUE as UShort = 65_535 |
The greatest value representable by an UShort. |
| public static const | MIN_VALUEMIN_VALUE as UShort = 0 |
The smallest value representable by an UShort. |
| Modifier and Type | Member | Description |
|---|---|---|
| public native | UShortUShort() |
Builds the neutral UShort value (`0`). |
| public native | UShort | Builds a UShort from a Boolean value (`false` = 0, `true` = 1). |
| public native | UShort | Builds a UShort from a character code point. |
| public native | UShort | Builds a UShort from a Double value. |
| public native | UShort | Builds a UShort from a Float value. |
| public native | UShort | Builds a UShort from a signed 32-bit integer. |
| public native | UShort | Builds a UShort from a signed 64-bit integer. |
| public native | UShortUShort(value: String) throws BadValueException |
Builds a UShort from a textual representation. |
| public native | UShort | Builds a UShort from an unsigned 32-bit integer. |
| public native | UShort | Builds a UShort from an unsigned 64-bit integer. |
| Modifier and Type | Member | Description |
|---|---|---|
| public static | parseparse( readonly value as String ) as UShort throws BadValueException: |
Parses an UShort value from text. |
| public override | toStringtoString() as String: |
Converts this value to its textual representation. |
| public static | tryParse | Parses an UShort value from text. |
| Modifier and Type | Member | Description |
|---|---|---|
| public native static | operator!=( readonly a as UShort, readonly b as UShort ) as Boolean | Tests whether two UShort values are different. |
| public native static | operator%( readonly a as UShort, readonly b as UShort ) as UShort | Computes the remainder of one UShort value divided by another. |
| public native static | operator%=( readonly a as UShort, readonly b as UShort ) as Void | Replaces `a` with the remainder of `a` divided by `b`. |
| public native static | operator*( readonly a as UShort, readonly b as UShort ) as UShort | Multiplies two UShort values. |
| public native static | operator**( readonly value as UShort, readonly power as UInt ) as UShort | Raises a UShort value to a power. |
| public native static | operator**=( readonly value as UShort, readonly power as UInt ) as Void | Replaces `value` with `value ** power`. |
| public native static | operator*=( readonly a as UShort, readonly b as UShort ) as Void | Multiplies `a` by `b` in place. |
| public native static | operator+( readonly a as UShort, readonly b as UShort ) as UShort | Adds two UShort values. |
| public native static | operator+=( readonly a as UShort, readonly b as UShort ) as Void | Adds `b` to `a` in place. |
| public native static | operator-( readonly a as UShort, readonly b as UShort ) as UShort | Subtracts one UShort value from another. |
| public native static | operator-=( readonly a as UShort, readonly b as UShort ) as Void | Subtracts `b` from `a` in place. |
| public native static | operator/( readonly a as UShort, readonly b as UShort ) as Double | Divides one UShort value by another. |
| public native static | operator//( readonly a as UShort, readonly b as UShort ) as UShort | Performs integer division on two UShort values. |
| public native static | operator//=( readonly a as UShort, readonly b as UShort ) as Void | Replaces `a` with the integer division of `a` by `b`. |
| public native static | operator<( readonly a as UShort, readonly b as UShort ) as Boolean | Tests whether `a` is strictly lower than `b`. |
| public native static | operator<=( readonly a as UShort, readonly b as UShort ) as Boolean | Tests whether `a` is lower than or equal to `b`. |
| public native static | operator==( readonly a as UShort, readonly b as UShort ) as Boolean | Tests whether two UShort values are equal. |
| public native static | operator>( readonly a as UShort, readonly b as UShort ) as Boolean | Tests whether `a` is strictly greater than `b`. |
| public native static | operator>=( readonly a as UShort, readonly b as UShort ) as Boolean | Tests whether `a` is greater than or equal to `b`. |