[][src]Module lep::builtin

Functions

add

The + function.

car

The car function.

cdr

The cdr function.

cons

The cons function.

div

The / function.

identity

The identity function.

is_truthful

Convert an object to a boolean value. The (), false, 0 (i64) and "" (String) values are considered false; all other objects are considered true.

list

The list function.

mul

The * function.

not

The not function.

register

Register all built-in functions.

register_add

Register the + function.

register_and

Register the special and form.

register_apply

Register the special apply form.

register_car

Register the car function.

register_cdr

Register the cdr function.

register_cons

Register the cons function.

register_div

Register the / function.

register_env

Register the env function.

register_identity

Register the identity function.

register_list

Register the list function.

register_mul

Register the * function.

register_not

Register the not function.

register_or

Register the special or form.

register_sub

Register the - function.

sub

The - function.