[][src]Struct monadic::state::State

pub struct State<'a, S, A> {
    pub run_state: Box<dyn Fn(S) -> (A, S) + 'a>,
}

Fields

run_state: Box<dyn Fn(S) -> (A, S) + 'a>

Methods

impl<'a, S: 'a + Clone, A: 'a + Clone> State<'a, S, A>[src]

pub fn pure(x: A) -> Self[src]

pub fn bind<B, F: 'a>(self, f: F) -> State<'a, S, B> where
    F: Fn(A) -> State<'a, S, B>, 
[src]

pub fn initial_state(self, s: S) -> (A, S)[src]

Auto Trait Implementations

impl<'a, S, A> !Send for State<'a, S, A>

impl<'a, S, A> !Sync for State<'a, S, A>

impl<'a, S, A> Unpin for State<'a, S, A>

impl<'a, S, A> !UnwindSafe for State<'a, S, A>

impl<'a, S, A> !RefUnwindSafe for State<'a, S, A>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]