1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
/*!
types that represent values.
*/
// The types here represent values,
// so warning about "type complexity" for them is silly .
#![allow(clippy::type_complexity)]

// pub mod cmp;
pub mod collection_traits;

// pub mod integer;
#[doc(hidden)]
pub mod list;

pub mod to_value_traits;

#[doc(hidden)]
pub use self::list::{TList, TNil};