finit 0.4.0

Finit is a library for defining sets of data, and then performing set operations on them. It is designed to be used for permission systems, but can be used for any kind of data that can be represented as a set.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! This module contains various collection types that can be used with the traits defined in this crate, such as [`WildcardHashMap`] and [`WildcardBTreeMap`].

#[cfg(feature = "std")]
mod wildcard_hashmap;
#[cfg(feature = "std")]
pub use wildcard_hashmap::WildcardHashMap;

#[cfg(feature = "std")]
mod wildcard_btreemap;
#[cfg(feature = "std")]
pub use wildcard_btreemap::WildcardBTreeMap;