Strings
Immutable, length-aware string views that prevent buffer overflows.
Concept & Motivation
Architecture
typedef struct {
u8 *ptr; // Pointer to data (NOT owned)
u64 len; // Exact length
} String;API Reference
string.from
string.fromString s = string.from("Hello");string.join
string.joinLast updated