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: TRemaining elements of the type list.