#set #map #elements #numbers #fixed #ordered #cap

no-std petitset

An ordered set data structure, optimized for stack-allocated storage of a tiny number of elements with a fixed cap

5 releases

0.2.1 Feb 8, 2022
0.2.0 Feb 1, 2022
0.1.2 Jan 26, 2022
0.1.1 Jan 21, 2022
0.1.0 Jan 21, 2022

#1422 in Data structures

Download history 580/week @ 2023-12-13 536/week @ 2023-12-20 402/week @ 2023-12-27 388/week @ 2024-01-03 621/week @ 2024-01-10 435/week @ 2024-01-17 370/week @ 2024-01-24 316/week @ 2024-01-31 484/week @ 2024-02-07 523/week @ 2024-02-14 462/week @ 2024-02-21 484/week @ 2024-02-28 529/week @ 2024-03-06 399/week @ 2024-03-13 499/week @ 2024-03-20 382/week @ 2024-03-27

1,861 downloads per month

MIT/Apache

54KB
792 lines

About

Array-backed ordered set and map data structures in Rust, optimized for stack-allocated storage of a tiny number of elements with a fixed cap. All you need is Eq!

This crate is:

  • entirely safe
  • fully documented
  • no_std compatible
  • zero dependencies (unless you want thiserror or serde integration)

This crate is designed to be used in performance-sensitive contexts with a small number of elements, where iteration is more common than look-ups and you don't mind a fixed size. One particularly useful quirk is that elements are not recompacted upon removal: this can be very useful when replacing elements in a set or using the indexes that the elements are stored at in a semantic fashion. Iteration order is guaranteed to be stable, on a first-in-first-out basis.

If this isn't what you're after, check out one of these alternatives!

  • smolset: automatically converts to a HashSet when the number of elements is too large. Unordered.
  • array_map: Blazing fast, fixed size. All possible keys must be known statically.
  • sparseset: Heap-allocated, great for sparse data and frequent iteration. Stable order!
  • HashSet: Heap-allocated, unordered, requires Hash, unbounded size.
  • BTreeSet: Heap-allocated, ordered, requires Ord, unbounded size.
  • IndexMap: Heap-allocated, requires Hash, unbounded size.

This crate has a reasonable collection of convenience methods for working with both sets and maps, aiming for rough equivalence with HashMap and HashSet. If you'd like more, please submit an issue or PR!

Dependencies

~185KB