Expand description
SeqString - Arena or Globally Allocated String
Strings in Seq can be allocated from two sources:
- Thread-local arena (fast, bulk-freed on strand exit)
- Global allocator (persists across arena resets)
This allows fast temporary string creation during strand execution while maintaining safety for channel communication (clone to global).
Structs§
- SeqString
- String that tracks its allocation source
Functions§
- arena_
string - Create arena-allocated string (fast path for temporaries)
- global_
string - Create globally-allocated string (persists across arena resets)