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
29
30
31
32
33
34
#![no_std]
#![forbid(unsafe_code)]
#![cfg_attr(feature = "extreme_tuples", recursion_limit = "256")]
#![cfg_attr(feature = "nightly", feature(unsized_local))]

#[cfg(feature = "alloc")]
extern crate alloc as std;

#[doc(hidden)]
pub use core;

#[doc(hidden)]
#[cfg(feature = "macros")]
pub use macros;

#[cfg(feature = "macros")]
pub mod anon;
pub mod call;
pub mod coprod;
pub mod hlist;
pub mod peano;

pub mod as_ref;
pub mod cmp;
pub mod fold;
pub mod map;
pub mod zip;

pub mod convert;

use seal::Seal;
mod seal {
    pub trait Seal {}
}