Blob Library
Stof's standard blob library ("Blob").
Common Value Functions
Blob.toString(blob: blob): str
Returns this blob converted to a string.
Blob.or(blob: blob, ...): unknown
Returns the first non-empty (null or void) argument, just like the Standard Library "or" function.
Blob Functions
Blob.len(blob: blob): int
Get the length of this blob (number of bytes (u8 values)).
Blob.at(blob: blob, index: int): int
Get the byte in this blob at a specific index.
Last updated