reven2.types._array.RawBuffer(Array)
class documentationreven2.types._array
(View In Hierarchy)
A specialized Array
containing U8
([U8; n]
).
Useful to express that memory is read as an "untyped" buffer of bytes.
Method | __init__ | Construct an array of type ty and count
count . |
Inherited from Type (via Array):
Method | size_bytes | The minimal number of bytes necessary to hold an instance of this type, possibly depending on the context. |
Inherited from Type (via Array):
Method | size_bytes | The minimal number of bytes necessary to hold an instance of this type, possibly depending on the context. |
Construct an array of type ty
and count
count
.
An array of 4 contiguous 64 bits unsigned integers: >>> U64_4 = types.Array(types.U64, 4)
Parameters | ty | The type of element in the resulting array type. |
count | The number of elements in the resulting array type. | |
Raises | ValueError | if count < 0. |