1
2
3
4
5
6
7
8
9
//! Space-efficient enum values.
//!
//! For the moment only option types are implemented, as true enums would require something
//! like a `const fn` version of `size_of`.

mod utils;

pub mod tag;
pub mod option;