Struct FunctionsStore

Source
pub struct FunctionsStore { /* private fields */ }
Expand description

A store that maps functions to their assigned names.

FunctionsStore maintains a registry of functions and their human-readable names, which is useful for displaying and debugging expression functions. The store allows for consistent name resolution of functions used in expressions.

§Examples

use bc_envelope::prelude::*;
use bc_envelope::extension::expressions::{FunctionsStore, functions};

// Create a store with some known functions
let store = FunctionsStore::new([
    functions::ADD,
    functions::SUB,
    functions::MUL
]);

// Look up the name of a function
assert_eq!(store.name(&functions::ADD), "add");

Implementations§

Source§

impl FunctionsStore

Source

pub fn new<T>(functions: T) -> Self
where T: IntoIterator<Item = Function>,

Creates a new FunctionsStore with the given functions.

§Parameters
  • functions - An iterable of Function instances to store
§Returns

A new FunctionsStore containing the functions

§Examples
use bc_envelope::prelude::*;
use bc_envelope::extension::expressions::{FunctionsStore, functions};

// Create a store with standard arithmetic functions
let store = FunctionsStore::new([
    functions::ADD,
    functions::SUB,
    functions::MUL,
    functions::DIV
]);
Source

pub fn insert(&mut self, function: Function)

Inserts a function into the store.

§Parameters
  • function - The function to insert
§Examples
use bc_envelope::prelude::*;
use bc_envelope::extension::expressions::{FunctionsStore, Function, functions};

let mut store = FunctionsStore::default();
store.insert(functions::ADD);
store.insert(Function::new_with_static_name(100, "myCustomFunction"));
Source

pub fn assigned_name(&self, function: &Function) -> Option<&str>

Returns the assigned name for a function, if it exists in the store.

§Parameters
  • function - The function to look up
§Returns

Some string slice with the function name if found, or None if not found

§Examples
use bc_envelope::prelude::*;
use bc_envelope::extension::expressions::{FunctionsStore, functions};

let store = FunctionsStore::new([functions::ADD]);
assert_eq!(store.assigned_name(&functions::ADD), Some("add"));
assert_eq!(store.assigned_name(&functions::SUB), None);
Source

pub fn name(&self, function: &Function) -> String

Returns the name for a function, either from this store or from the function itself.

If the function exists in the store, returns its assigned name. Otherwise, returns the function’s own name.

§Parameters
  • function - The function to look up
§Returns

The name of the function as a String

§Examples
use bc_envelope::prelude::*;
use bc_envelope::extension::expressions::{FunctionsStore, functions};

let store = FunctionsStore::new([functions::ADD]);
assert_eq!(store.name(&functions::ADD), "add");
// Not in store, so uses function's own name
assert_eq!(store.name(&functions::SUB), "sub");
Source

pub fn name_for_function( function: &Function, functions: Option<&Self>, ) -> String

A static method that returns the name of a function, using an optional store.

This utility method is useful when you have an optional store and want to get a function name without additional unwrapping logic.

§Parameters
  • function - The function to look up
  • functions - An optional reference to a FunctionsStore
§Returns

The name of the function as a String

§Examples
use bc_envelope::prelude::*;
use bc_envelope::extension::expressions::{FunctionsStore, functions};

let store = FunctionsStore::new([functions::ADD]);
 
// Using the store
assert_eq!(
    FunctionsStore::name_for_function(&functions::ADD, Some(&store)),
    "add"
);

// Without a store
assert_eq!(
    FunctionsStore::name_for_function(&functions::ADD, None),
    "add"
);

Trait Implementations§

Source§

impl Clone for FunctionsStore

Source§

fn clone(&self) -> FunctionsStore

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for FunctionsStore

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for FunctionsStore

Provides a default empty store.

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T