diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-10-28 07:00:26 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-10-28 07:00:26 -0700 |
commit | 374509f247df16d40d2535a34237fa2f5dd5863e (patch) | |
tree | cb540398c3b0bb5b4826c21edac6621e4fb483a1 /lib.c | |
parent | 6dfa89ab06bd72ae6e476306637e9e98bcf5799a (diff) | |
download | txr-374509f247df16d40d2535a34237fa2f5dd5863e.tar.gz txr-374509f247df16d40d2535a34237fa2f5dd5863e.tar.bz2 txr-374509f247df16d40d2535a34237fa2f5dd5863e.zip |
New function: identity*
An version of identity with lax argument conventions.
* eval.c (eval_init): Register identity* intrinsic.
* lib.c (identity_star_f): New symbol variable.
(identity_star): New function.
(obj_init): gc-protect identity_star_f variable, and
initialize it.
* lib.h (identity_star_f): Declared.
* txr.1: Documented.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -125,7 +125,8 @@ val null_string; val nil_string; val null_list; -val identity_f, equal_f, eql_f, eq_f, car_f, cdr_f, null_f; +val identity_f, identity_star_f; +val equal_f, eql_f, eq_f, car_f, cdr_f, null_f; val list_f, less_f, greater_f; val prog_string; @@ -164,6 +165,14 @@ val identity(val obj) return obj; } +static val identity_star(varg args) +{ + int index = 0; + if (args_more(args, index)) + return args_get(args, &index); + return nil; +} + static val code2type(int code) { switch (convert(type_t, code)) { @@ -11026,7 +11035,8 @@ static void obj_init(void) &user_package, &public_package, &null_list, &equal_f, &eq_f, &eql_f, &car_f, &cdr_f, &null_f, &list_f, - &identity_f, &less_f, &greater_f, &prog_string, &env_list, + &identity_f, &identity_star_f, &less_f, &greater_f, + &prog_string, &env_list, convert(val *, 0)); nil_string = lit("nil"); @@ -11184,6 +11194,7 @@ static void obj_init(void) eq_f = func_n2(eq); eql_f = func_n2(eql); identity_f = func_n1(identity); + identity_star_f = func_n0v(identity_star); car_f = func_n1(car); cdr_f = func_n1(cdr); null_f = func_n1(null); |