[−][src]Trait rust_fp_categories::bind::Bind
Associated Types
Loading content...Required methods
Loading content...Implementations on Foreign Types
impl<A> Bind for Rc<A>[src]
type Elm = A
type M = Rc<U>
pub fn bind<B, F>(self, f: F) -> Self::M where
F: FnOnce(&Self::Elm) -> Self::M, [src]
F: FnOnce(&Self::Elm) -> Self::M,
impl<A> Bind for Box<A>[src]
type Elm = A
type M = Box<U>
pub fn bind<B, F>(self, f: F) -> Self::M where
F: FnOnce(&Self::Elm) -> Self::M, [src]
F: FnOnce(&Self::Elm) -> Self::M,
impl<A> Bind for Option<A>[src]
type Elm = A
type M = Option<U>
pub fn bind<B, F>(self, f: F) -> Self::M where
F: FnOnce(&Self::Elm) -> Self::M, [src]
F: FnOnce(&Self::Elm) -> Self::M,
impl<A, E: Clone> Bind for Result<A, E>[src]
type Elm = A
type M = Result<U, E>
pub fn bind<B, F>(self, f: F) -> Self::M where
F: FnOnce(&Self::Elm) -> Self::M, [src]
F: FnOnce(&Self::Elm) -> Self::M,
impl<A> Bind for Vec<A>[src]
type Elm = A
type M = Vec<U>
pub fn bind<B, F>(self, f: F) -> Self::M where
F: Fn(&Self::Elm) -> Self::M, [src]
F: Fn(&Self::Elm) -> Self::M,