tupleops 0.1.1

Utility library to work with tuples
Documentation
1
2
3
4
5
6
7
crate::do_impl!("tuple", tuple_tuple, {
    /// A tuple.
    #[cfg_attr(docsrs, doc(cfg(feature = "tuple")))]
    pub trait Tuple {}

    impl Tuple for () {}
});