Crate flyweights

source ·
Expand description

Types implementing the flyweight pattern for reusing object allocations.

Structs§

  • An immutable string type which only stores a single copy of each string allocated. Internally represented as an Arc to the backing allocation. Occupies a single pointer width.