typed_key

Build Status Crates.io API reference

A SmolStr is a string type that has the following properties

Unlike String, however, SmolStr is immutable. The primary use-case for SmolStr is a good enough default storage for tokens of typical programming languages. A specialized interner might be a better solution for some use-cases.

Intenrally, SmolStr is roughly an enum { Heap<Arc<str>>, Inline([u8; 22]) }.