anylr 0.1.0

Provide `AnyOf<L, R>`, `SomeOf<L, R>`, `Either<L, R>`, and traits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![no_std]

pub mod abs;
pub mod any_of;
pub mod both;
pub mod either;
pub mod some_of;

pub use any_of::Any;
pub use either::Either;
pub use some_of::SomeOf;