appendUInt32Le
Appends a 32-bit unsigned integer to this ByteStringBuilder in Little-Endian order.
This function appends the value as four bytes to the end of this ByteStringBuilder. It also validates that the provided value is within the specified validRange. By default the valid range is from UInt.MIN_VALUE to UInt.MAX_VALUE.
The bytes are appended in Little-Endian order.
Return
This ByteStringBuilder instance, allowing for chaining of operations.
Parameters
The unsigned integer value to append.
The valid range for the unsigned integer value. Defaults to UInt.MIN_VALUE..UInt.MAX_VALUE.
Throws
if the value is outside the validRange.
Appends a 32-bit unsigned integer to this ByteStringBuilder in Little-Endian order.
This function appends the value as four bytes to the end of this ByteStringBuilder. It also validates that the provided value is within the specified validRange. By default the valid range is from UInt.MIN_VALUE to UInt.MAX_VALUE.
The bytes are appended in Little-Endian order.
Return
This ByteStringBuilder instance, allowing for chaining of operations.
Parameters
The integer value to append.
The valid range for the unsigned integer value. Defaults to UInt.MIN_VALUE..UInt.MAX_VALUE.
Throws
if the value is outside the validRange.