1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// Copyright (c) DUSK NETWORK. All rights reserved.

//! Microkelvin
//!
//! A library for dealing with tree-shaped Canonical data. It has three parts:
//!
//! `Compound`, a trait for a generic way to implement tree structures
//! `Annotation`, a trait for annotated subtrees used for searching
//! `Branch` and `BranchMut`, types for representing branches in tree-formed
//! data as well as methods of search.

#![no_std]
#![feature(min_const_generics)]
#![warn(missing_docs)]

mod annotation;
mod branch;
mod branch_mut;
mod compound;

pub use annotation::{Annotated, Annotation, Cardinality, Max};
pub use branch::{Branch, Level, Step, Walk};
pub use branch_mut::{BranchMut, LevelMut, StepMut, WalkMut};
pub use compound::{Child, ChildMut, Compound, Nth};