columnar/adts/
mod.rs

1//! Abstract data types represented in columnar form.
2//!
3//! These ADTs are generally recursive, which is why they required a special implementation.
4
5pub mod tree;
6pub mod json;
7pub mod art;