10 releases (breaking)

0.8.1 Apr 8, 2024
0.8.0 Feb 9, 2024
0.7.1 Jan 15, 2024
0.7.0 Dec 30, 2023
0.1.0 Sep 11, 2021

#772 in Data structures

Download history 70/week @ 2023-12-22 196/week @ 2023-12-29 69/week @ 2024-01-05 51/week @ 2024-01-12 13/week @ 2024-01-19 2/week @ 2024-02-02 37/week @ 2024-02-09 31/week @ 2024-02-16 61/week @ 2024-02-23 52/week @ 2024-03-01 45/week @ 2024-03-08 42/week @ 2024-03-15 37/week @ 2024-03-22 73/week @ 2024-03-29 172/week @ 2024-04-05

328 downloads per month
Used in 8 crates (2 directly)

MIT/Apache

120KB
3K SLoC

im-lists

Actions Status Coverage Status Crate Status Docs Status

An implementation of a persistent unrolled linked list and vlist. This linked list is implemented with a backing of either Arc or Rc, for single or multi-threaded environments. The single threaded list can be found as a List, and the thread-safe implementation can be found as a SharedList. It is generic over smart pointer - so if you would like to use this with a custom smart pointer (i.e. something like a Gc) then you can do so.

An unrolled linked list is a linked list where each node contains a vector of elements. While the algorithmic complexity is the same as a normal naive linked list, storing elements in vectors improves cache locality and also gives practical speed ups on common operations. A Vlist is like an unrolled linked list, however the vector capacity in each node grows exponentially. This also means that operations that need to iterate over nodes run in O(log(n)) time.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

See CONTRIBUTING.md.

Dependencies