Skip to main content

Module call_method

Module call_method 

Source
Expand description

Method Call FFI Functions for JIT

Dispatches method calls on various types (array, string, object, series, etc.) Split into type-specific helper modules for maintainability.

Re-exports§

pub use array::call_array_method;
pub use duration::call_duration_method;
pub use number::call_number_method;
pub use object::call_object_method;
pub use result::call_result_method;
pub use signal_builder::call_signalbuilder_method;
pub use string::call_string_method;
pub use time::call_time_method;

Modules§

array
Array method implementations for JIT
duration
Duration method implementations for JIT
number
Number method implementations for JIT
object
Object method implementations for JIT
result
Result type method implementations for JIT
signal_builder
SignalBuilder method implementations for JIT
string
String method implementations for JIT
time
Time method implementations for JIT

Functions§

jit_call_method
Call a method on a value Stack layout at call: [receiver, arg1, …, argN, method_name, arg_count] The FFI pops values from ctx.stack and dispatches to the appropriate method