method write-ubits
Documentation for method write-ubits
assembled from the following types:
role Buf
From Buf
(Buf) method write-ubits
Defined as:
method write-ubits(buf8:D: uint $pos, uint $bits, UInt:D $value --> Nil)
Writes an unsigned integer value to the bits from the given bit offset and given number of bits. The endianness of the bits is assumed to be BigEndian
. Always returns Nil.
role Buf
From Buf
(Buf) method write-ubits
Defined as:
method write-ubits(buf8: uint $pos, uint $bits, UInt:D $value --> buf8:D)
Writes an unsigned integer value to the bits from the given bit offset and given number of bits. The endianness of the bits is assumed to be BigEndian
.