Skip to main content

FreerComp

Enum FreerComp 

Source
pub enum FreerComp {
    Pure(String),
    Impure {
        effect: String,
        op: String,
        arg: String,
        cont: Box<dyn FnOnce(String) -> FreerComp>,
    },
}
Expand description

A type-erased representation of the Freer monad for string-typed operations.

FreerComp is either a pure value or an impure node holding an operation description and a continuation.

Variants§

§

Pure(String)

Pure computation: just a string value.

§

Impure

Impure: an effect name, operation name, argument, and a continuation.

Fields

§effect: String

Effect name.

§op: String

Operation name.

§arg: String

Argument (serialized).

§cont: Box<dyn FnOnce(String) -> FreerComp>

Continuation from result string to next computation.

Implementations§

Source§

impl FreerComp

Source

pub fn pure(v: impl Into<String>) -> Self

Construct a pure Freer computation.

Source

pub fn impure( effect: impl Into<String>, op: impl Into<String>, arg: impl Into<String>, cont: impl FnOnce(String) -> FreerComp + 'static, ) -> Self

Construct an impure Freer computation (one algebraic operation).

Source

pub fn interpret(self, handler: &dyn Fn(&str, &str, &str) -> String) -> String

Interpret the Freer computation using a handler function. handler(effect, op, arg) returns the result string for that operation.

Source

pub fn is_pure(&self) -> bool

Check if this is a pure computation.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.