[][src]Trait fool::OptionExt

pub trait OptionExt<T>: Sized {
    fn zip_ext<U>(self, other: Option<U>) -> Option<(T, U)>;

    fn zip<U>(self, other: Option<U>) -> Option<(T, U)> { ... }
}

Required methods

fn zip_ext<U>(self, other: Option<U>) -> Option<(T, U)>

Loading content...

Provided methods

fn zip<U>(self, other: Option<U>) -> Option<(T, U)>

Loading content...

Implementations on Foreign Types

impl<T> OptionExt<T> for Option<T>[src]

Loading content...

Implementors

Loading content...