Expand description
Function registry and value conversion utilities.
Provides the global registry for AIMX functions/methods and helpers
used by registration macros to convert between Value and native types.
The registry is initialized once with built-ins via functions::register_all_functions
and accessed through a thread-safe RwLock.
Structs§
- Function
Registry - Global registry mapping function names to handlers used during expression evaluation.
Supports both standalone calls and method-style calls on
Valuereceivers.
Traits§
- Function
Handler - Handler invoked for a registered function or method.
- Value
Converter - Convert
Valueto native types used by functions.
Functions§
- convert_
result_ to_ value - Convert any
T: Into<Value>toArc<Value>. - convert_
value_ to_ type - Convert a
ValuetoTviaValueConverter.