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
12
13
14
15
16
17
18
mod bool;

#[cfg(feature = "std")]
pub(crate) mod btreemap;
#[cfg(feature = "std")]
pub(crate) mod hashmap;

#[macro_use]
pub(crate) mod map;

mod option;

#[cfg(feature = "std")]
mod r#box;

mod array;

mod tuples;