Trait tool::sequence::First
[−]
[src]
pub trait First { type First; fn first(self) -> Self::First; }
A sequence with a first item.
Associated Types
type First
Required Methods
fn first(self) -> Self::First
Implementors
impl<T> First for T where T: Cons