[][src]Struct arithmetic_eval::fns::Loop

pub struct Loop;

Loop function that evaluates the provided closure one or more times.

Type

fn<T, R>(T, fn(T) -> (false, R) | (true, T)) -> R

Examples

let program = r#"
    factorial = |x| {
        loop((x, 1), |(i, acc)| {
            continue = cmp(i, 1) != -1; # i >= 1
            (continue, if(continue, (i - 1, acc * i), acc))
        })
    };
    factorial(5) == 120 && factorial(10) == 3628800
"#;
let block = F32Grammar::parse_statements(Span::new(program)).unwrap();

let mut interpreter = Interpreter::new();
interpreter
    .insert_native_fn("cmp", fns::Compare)
    .insert_native_fn("if", fns::If)
    .insert_native_fn("loop", fns::Loop);
let ret = interpreter.evaluate(&block).unwrap();
assert_eq!(ret, Value::Bool(true));

Trait Implementations

impl Clone for Loop[src]

impl Copy for Loop[src]

impl Debug for Loop[src]

impl<T> NativeFn<T> for Loop where
    T: Grammar,
    T::Lit: Num + Neg<Output = T::Lit> + Pow<T::Lit, Output = T::Lit>, 
[src]

Auto Trait Implementations

impl RefUnwindSafe for Loop

impl Send for Loop

impl Sync for Loop

impl Unpin for Loop

impl UnwindSafe for Loop

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

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.