stackstring 0.4.4

A fixed-size string
Documentation
1
2
3
4
5
6
7
8
# stackstring

A fixed-size inline string implementation, meant for simple use cases.
The string is backed by an array of size `L` and the string can have a length of up to `L` bytes, and will be space-padded if length is less than `L`.

## Example

See the `examples/` directory for more.