isUnsigned method
Check if this is an unsigned integer with the specified size
.
size
must be between 1 and 8, both inclusive, else an ArgumentError
gets thrown.
Implementation
bool isUnsigned([int size = 8]) => isUnsignedInteger(this, size);
Check if this is an unsigned integer with the specified size
.
size
must be between 1 and 8, both inclusive, else an ArgumentError
gets thrown.
bool isUnsigned([int size = 8]) => isUnsignedInteger(this, size);