mirror of
https://github.com/redox-os/small
synced 2026-08-24 08:16:11 +00:00
No description
- Rust 100%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| src | ||
| tests | ||
| .gitignore | ||
| .gitlab-ci.yml | ||
| Cargo.toml | ||
| LICENSE | ||
| README.md | ||
small
This is a library that provides "small" types (meaning things are allocated on the stack up to a certain size).
Currently there is only an implementation of a small string.
Helping out
We'd love to get more help with ensuring that these functions are the most memory efficient and the fastest that they can be. If you can help, that would be fantastic!
There are, however, a few rules when it comes to submitting merge requests:
- Ensure that all functions that are publicly facing have sufficient documentation and include at least one doc test.
- Ensure that all possible branches through your code is tested, preferably across multiple tests.
- Make benchmarks between the old version and the new, and make those readily available.