pub trait List {
    fn val() -> Vec<bool>;
    fn new() -> Self;
}
Expand description

Type-level linked list, enum-like of Nil and Cons

Required Methods

Real, represented with rust’s objects value of type.

Real value of type.

Implementors