asU16 property

int get asU16

Implementation

int get asU16 {
  if (isNegative || this > BinaryOps.mask16) {
    throw ArgumentException.invalidOperationArguments(
      "asU32",
      reason: "Invalid 16-bit unsigned integer.",
    );
  }
  return this;
}