UInt
classin packageklyn
public class UInt extends AbstractUnsignedInt implements ValueType:
Represents a 32-bit unsigned integer.
Constructors
| Modifier and Type |
Member |
Description |
| public native |
UInt |
Builds the neutral UInt value (`0u`). |
Methods
| Modifier and Type |
Member |
Description |
| public static |
parseparse( readonly value as String ) as UInt throws BadValueException: |
No summary. |
| public override readonly |
toString |
No summary. |
| public static |
tryParse |
No summary. |
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. |