Expand description
§maplike
Rust traits for abstract containers and operations over them.
With this library, you can write code that is generic over various built-in,
standard library, and third-party collections, containers, and primitives. For
example, you can have the same code work on both on BTreeMap and HashMap,
and in many cases also on Vec and more.
See the Supported containers section for a complete list of supported containers.
Basically, this is Python’s
collections.abc, but
in Rust, and with traits not only for different kinds of containers, but also
for each operation. And every container is treated as if it was a map. If it is
not really a map, it is treated as if its key type was usize, even when there
can be at most only one element. Hence the crate name, maplike.
The traits are implemented for many containers from std and third-party
crates. See the Traits section for a list of all available traits.
This library is maintained and champaigned (aka. dogfooded) by the author, who uses has it as a dependency for
undoredo, a versatile crate for implementing Undo/Redo and non-linear history tree using sparse deltas (diffs), snapshots, or commands on arbitrary data structures;dcel, a crate that implements the half-edge data structure (aka. doubly connected edge list, DCEL) generically over its underlying containers.
This crate is no_std-compatible.
§Usage
§Adding dependency
First, add maplike as a dependency to your Cargo.toml:
[dependencies]
maplike = { version = "0.13.1", features = ["derive"] }The derive feature flag is only needed if you want to
derive Assign or Container traits using derive macros:
#[derive(Assign)]
or
#[derive(Container)].
§Usage examples
maplike’s traits allow you to write functions that are generic over many
different collection types. A single trait like
Get is enough to
abstract over vectors, arrays, and maps alike.
use std::collections::{BTreeMap, HashMap};
use maplike::ops::Get;
// Generic over any collection implementing the `Get` trait.
fn get_second_element<C: Get<usize>>(collection: &C) -> Option<&C::Value> {
collection.get(&1)
}
// `get_second_element()` works for `Vec`s, arrays, `BTreeMap`s, `HashMap`s with
// the very same code.
assert_eq!(get_second_element(&vec![10, 20, 30]), Some(&20));
assert_eq!(get_second_element(&[10, 20, 30]), Some(&20));
assert_eq!(get_second_element(&BTreeMap::from([(0, 10), (1, 20)])), Some(&20));
assert_eq!(get_second_element(&HashMap::from([(0, 10), (1, 20)])), Some(&20));An abstract container trait can bundle together several traits
for container methods together in one short bound. For example,
Veclike joins
together
(Get,
Set,
Push,
Pop,
Clear,
Len, and
Index), thus allowing
code that is generic over
Vec,
VecDeque,
smallvec::SmallVec,
tinyvec::ArrayVec(https://docs.rs/tinyvec/latest/tinyvec/struct.ArrayVec.htm
l), and
tinyvec::TinyVec.
use maplike::containers::{Container, Veclike};
use maplike::ops::{Clear, Push};
// This function is generic over any `Veclike` collection. The `Veclike` bound
// provides `.clear()`, `.push()` and many other methods at once.
fn replace_all<C: Veclike<usize, Value = i32>>(collection: &mut C, values: &[i32]) {
collection.clear();
for &value in values {
collection.push(value);
}
}
// `replace_all()` now works for any `Veclike` collection.
// Works on `Vec`,
let mut vec = Vec::new();
replace_all(&mut vec, &[1, 2, 3]);
assert_eq!(vec, [1, 2, 3]);
replace_all(&mut vec, &[4, 5, 6]);
assert_eq!(vec, [4, 5, 6]);
#[cfg(feature = "smallvec")]
{
use smallvec::SmallVec;
// Works on `smallvec::SmallVec`.
let mut small_vec: SmallVec<[i32; 8]> = SmallVec::new();
replace_all(&mut small_vec, &[7, 8, 9]);
assert_eq!(small_vec.as_slice(), [7, 8, 9]);
}
#[cfg(feature = "tinyvec")]
{
use tinyvec::{ArrayVec, TinyVec};
// Works on `tinyvec::ArrayVec`.
let mut tiny_array_vec: ArrayVec<[i32; 8]> = ArrayVec::new();
replace_all(&mut tiny_array_vec, &[7, 8, 9]);
assert_eq!(tiny_array_vec.as_slice(), [7, 8, 9]);
// Works on `tinyvec::TinyVec`.
let mut tiny_vec: TinyVec<[i32; 8]> = TinyVec::new();
replace_all(&mut tiny_vec, &[10, 11, 12]);
assert_eq!(tiny_vec.as_slice(), [10, 11, 12]);
}
// NOTE: `arrayvec::ArrayVec` and `arrayvec::ArrayString` are not `Veclike`
// because they do not implement `Index`.§Traits
§Operations
This crate provides traits for common operations over map-like, set-like,
array-like, and vec-like data structures:
.get(),
.set(),
.modify(),
.insert(),
.remove(),
.push(),
.pop(),
.put(),
.clear(),
.len(),
.resize(),
.with_one(),
.assign(), and
.into_iter().
For bidirectional maps, there are also variants of the get and remove operations
by left and right key:
.get_by_left(),
.get_by_right(),
.remove_by_left(),
.remove_by_right().
§Entry API
We provide generic
Entry API for
types that have an Entry API:
HashMap,
BTreeMap, and
indexmap::IndexMap.
§Containers
For brevity and convenience, we also provide
Scalarlike,
Maplike,
Setlike,
Arraylike, and
Veclike abstract
container traits that join together traits of multiple operations.
§Supported containers
§Standard library
Rust’s standard library containers are supported via built-in convenience implementations:
HashMap, gated by thestdfeature (enabled by default);HashSet, gated by thestdfeature (enabled by default);BTreeMap, gated by theallocfeature (enabled by default);BTreeSet, gated by theallocfeature (enabled by default);Vec, gated by theallocfeature (enabled by default);VecDeque, gated by theallocfeature (enabled by default);Box, gated by theallocfeature (enabled by default);Rcand its weak pointer,std::rc::Weak, both gated by theallocfeature (enabled by default);Arc, and its weak pointer,std::sync::Weakboth gated by thestdfeature (enabled by default);Option, not feature-gated;
§Primitives
All Rust’s scalar types (i8, i16, i32, i64, i128, isize, u8,
u16, u32, u64, u128, usize, f32, f64, char, bool, ()) are
supported and treated like single-element, usize-keyed maps.
Rust’s compound types (arrays, tuples, slices) are supported and treated like
usize-keyed maps.
§maplike’s types
maplike provides and supports its own generic type,
One, for a
collection that always has only one element. Think Option but without None
or Box but without pointer indirection, behaving like a collection despite
holding a value not reference, allocated on the stack.
Wrap your value in this type if you need to treat it as a single-element,
usize-keyed map and your type does not happen to be a Rust primitive.
§Third-party types
In addition to the standard library, maplike has built-in feature-gated
trait implementations for data structures from certain external crates:
bidimap::BiBTreeMap, gated by thebidimapfeature flag, andbidimap::BiHashMap, which is additionally gated by thestdfeature flag.bidimapis a maintained fork of the currently unmaintainedbimapcrate;indexmap::IndexMapandindexmap::IndexSet, gated by theindexmapfeature flag;rstar::RTree, gated by therstarfeature flag;rstared::RTreed, gated by therstaredfeature flag;stable_vec::StableVec, gated by thestable-vecfeature flag;thunderdome::Arena, gated by thethunderdomefeature flag;arrayvec::ArrayVecandarrayvec::ArrayString, gated by thearrayvecfeature flag (individual vec-like traits, but notVeclike, becausearrayvectypes do not implementIndex);smallvec::SmallVec, gated by thesmallvecfeature flag;tinyvec::ArrayVec, andtinyvec::TinyVec, gated by thetinyvecfeature flag;
For some examples of practical use, see the
examples
directory of the undoredo crate.
§Unsupported collections
Among stable vector data structures,
Slab,
SlotMap,
generational-arena
are not supported because they lack interfaces for insertion at an arbitrary
key.
§Technical sidenotes
Unlike maps and sets, not all stable vector data
structures allow insertion and removal at arbitrary indexes regardless of
whether they are vacant, occupied or out of bounds. For StableVec, we managed
to implement inserting at out-of-bound indexes by changing the length before
insertion using the
.reserve_for()
method. For thunderdome::Arena, we insert at arbitrary key directly via the
.insert_at()
method. Collections for which we could not achieve this are documented in the
section below.
For Slab, an interface to insert at an arbitrary key is missing apparently
because
the freelist Slab uses to keep
track of its vacant indexes is only singly-linked, not doubly-linked. Inserting
an element at an arbitrary vacant index would require removing that index from
the freelist. But since there is no backwards link available at a given key,
doing so would require traversing the freelist from the beginning to find the
position of the previous node, which would incur a slow O(n) time cost.
Because of that, we have chosen to not support for it for now.
§Feature flags
derive— Enables theContainerandAssignderive macros.std(enabled by default) — Disable forno_stdcompatibility. Impliesalloc.alloc(enabled by default) — Enables convenience implementations foralloccollections (BTreeMap,BTreeSet,Vec,VecDeque).arrayvec— Enables convenience implementations forarrayvec::ArrayVecandarrayvec::ArrayString.bidimap— Enables convenience implementations forbidimap::BiBTreeMapand, additionally under thestdfeature,bidimap::BiHashMap.indexmap— Enables convenience implementations forindexmap::IndexMapandindexmap::IndexSet.rstar— Enables convenience implementations forrstar::RTree.stable-vec— Enables convenience implementations forstable_vec::StableVec.thunderdome— Enables convenience implementations forthunderdome::Arena.smallvec— Enables convenience implementations forsmallvec::SmallVec.tinyvec— Enables convenience implementations fortinyvec::ArrayVecandtinyvec::TinyVec.
Modules§
- containers
- Abstract container traits that bundle multiple operations together.
- entry
- Entry API traits for map-like containers.
- iter
- Iteration traits for map-like containers.
- one
One, a collection that holds always exactly one element.- ops
- Individual container operation traits.