pub struct VValFun {
    pub fun: FunType,
    pub upvalue_pos: Rc<Vec<VarPos>>,
    pub upvalues: Vec<VVal>,
    pub local_size: usize,
    pub min_args: Option<usize>,
    pub max_args: Option<usize>,
    pub err_arg_ok: bool,
    pub syn_pos: Option<SynPos>,
    pub label: VVal,
}
Expand description

This structure is the runtime representation of a WLambda function value.

Fields

fun: FunType

The closure or vm program that runs the function.

upvalue_pos: Rc<Vec<VarPos>>

The positions of the upvalues that are being captured by this function.

upvalues: Vec<VVal>

Contains any caught upvalues.

local_size: usize

The number of local variables defined in this functions.

This value is used to reserve stack space for storing them.

min_args: Option<usize>

Min number of arguments this functions requires.

max_args: Option<usize>

Max number of arguments this functions requires.

err_arg_ok: bool

If true, then this function accepts error values without panic. Functions by default don’t accept errors as argument. It needs to be explicitly enabled.

syn_pos: Option<SynPos>

The location of the definition of this function.

label: VVal

The return label of the function:

Implementations

Creates a new VVal containing the given closure with the given minimum and maximum parameters (see also add_func of GlobalEnv).

There is also a new more convenient (because provided by VVal itself) function: VVal::new_fun which has the same parameters.

The err_arg_ok parameter specifies whether the function accepts error values as arguments. If it doesn’t, the program will panic once an error value is encountered. This makes programs more maintainable.

This is usually useful if you want to add functions to the EvalContext. at runtime.

 use wlambda::compiler::EvalContext;
 use wlambda::vval::{VVal, VValFun, Env};

 let mut ctx = wlambda::compiler::EvalContext::new_empty_global_env();

 ctx.set_global_var("xyz",
     &VValFun::new_fun(
         move |env: &mut Env, argc: usize| {
             Ok(VVal::new_str("xyz"))
         }, None, None, false));

 assert_eq!(ctx.eval("xyz[]").unwrap().s_raw(), "xyz")

Internal utility function. Use at your own risk, API might change.

Internal utility function. Use at your own risk, API might change.

Returns a dummy function that does nothing.

Dumps captured up values of this function. Useful only if you want to debug functions/closures creates by WLambda code.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.