[][src]Trait rust_fp_categories::pure::Pure

pub trait Pure<A>: HKT<A> {
    pub fn pure(value: A) -> Self::T
    where
        Self: HKT<A, C = A>
; }

Required methods

pub fn pure(value: A) -> Self::T where
    Self: HKT<A, C = A>, 
[src]

Loading content...

Implementations on Foreign Types

impl<A> Pure<A> for Rc<A>[src]

impl<A> Pure<A> for Box<A>[src]

impl<A> Pure<A> for Option<A>[src]

impl<A, E> Pure<A> for Result<A, E>[src]

impl<A> Pure<A> for Vec<A>[src]

Loading content...

Implementors

Loading content...