zot 0.1.0

Provides Option-like enums for working with ordered collections of zero, one, or two items (`Zot`), or ordered collections of one or two items (`Ot`)
Documentation
1
2
3
4
5
6
7
mod ot;
mod zot;
mod errors;
mod iter_item;
pub use crate::ot::Ot;
pub use crate::zot::Zot;
pub use crate::errors::{TryFromOtError, TryFromZotError};