Third

Trait Third 

Source
pub trait Third {
    type Third;

    // Required method
    fn third(self) -> Self::Third;
}
Expand description

A sequence with a third item.

Required Associated Types§

Required Methods§

Source

fn third(self) -> Self::Third

Implementors§

Source§

impl<T> Third for T
where T: Cons, T::Tail: Cons, <T::Tail as Cons>::Tail: Cons,

Source§

type Third = <<<T as Cons>::Tail as Cons>::Tail as Cons>::Head