exp-rs 0.2.0

no_std expression parser, compiler, and evaluation engine for math expressions designed for embedded, with qemu examples
Documentation
extern crate alloc;
use crate::Real;

#[cfg(not(test))]
use alloc::rc::Rc;
use alloc::string::{String, ToString};
#[cfg(test)]
use std::rc::Rc;

pub struct OwnedNativeFunction {
    pub arity: usize,
    pub implementation: Rc<dyn Fn(&[Real]) -> Real>,
    pub name: String, // Fully owned String instead of Cow
    pub description: Option<String>,
}

// Convert from NativeFunction<'a> to OwnedNativeFunction
impl From<&crate::types::NativeFunction> for OwnedNativeFunction {
    fn from(nf: &crate::types::NativeFunction) -> Self {
        OwnedNativeFunction {
            arity: nf.arity,
            implementation: nf.implementation.clone(),
            name: nf.name.to_string(), // Convert Cow to String
            description: nf.description.clone(),
        }
    }
}

pub enum FunctionCacheEntry {
    Native(OwnedNativeFunction),
    Expression(crate::types::ExpressionFunction),
}

impl Clone for FunctionCacheEntry {
    fn clone(&self) -> Self {
        match self {
            FunctionCacheEntry::Native(nf) => FunctionCacheEntry::Native(OwnedNativeFunction {
                arity: nf.arity,
                implementation: nf.implementation.clone(),
                name: nf.name.clone(),
                description: nf.description.clone(),
            }),
            FunctionCacheEntry::Expression(ef) => FunctionCacheEntry::Expression(ef.clone()),
        }
    }
}