Skip to main content

LabelCons

Type Alias LabelCons 

Source
pub type LabelCons<L, T> = LCons<L, T>;
Expand description

Type alias for a label-only cons-list.

Aliased Type§

pub struct LabelCons<L, T> {
    pub head: Labeled<L, ()>,
    pub tail: T,
}

Fields§

§head: Labeled<L, ()>

Value of this element of the type list.

§tail: T

Remaining elements of the type list.