[][src]Trait rust_fp_categories::bind::Bind

pub trait Bind<A>: HKT<A> {
    pub fn bind<F>(self, f: F) -> Self::T
    where
        F: Fn(&Self::C) -> Self::T
; }

Required methods

pub fn bind<F>(self, f: F) -> Self::T where
    F: Fn(&Self::C) -> Self::T
[src]

Loading content...

Implementations on Foreign Types

impl<A, B> Bind<B> for Rc<A>[src]

impl<A, B> Bind<B> for Box<A>[src]

impl<A, B> Bind<B> for Option<A>[src]

impl<A, B, E: Clone> Bind<B> for Result<A, E>[src]

impl<A, B> Bind<B> for Vec<A>[src]

Loading content...

Implementors

Loading content...