tupley 0.1.1

Extension for primitive tuple (Hlist based on recursive structure)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]
#![allow(incomplete_features)]
#![cfg_attr(feature = "len-generic", feature(generic_const_exprs))]

pub mod macros;
pub mod tuple;

#[cfg(test)]
mod tests;

pub mod prelude {
    pub use crate::macros::*;
    pub use crate::tuple::*;
}