summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-07-26 06:54:36 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-07-26 06:54:36 -0700
commitf8ad6f5b4a33d85efab7de86e14ada750e3a23ce (patch)
tree723b3f677e03406290a5027d7cb8906e08be9d0d /eval.c
parentf6fba584dbd928d9af82f97f71b2bddfbc05b2df (diff)
downloadtxr-f8ad6f5b4a33d85efab7de86e14ada750e3a23ce.tar.gz
txr-f8ad6f5b4a33d85efab7de86e14ada750e3a23ce.tar.bz2
txr-f8ad6f5b4a33d85efab7de86e14ada750e3a23ce.zip
lib: deprecate set-diff; extend set operations.
* eval.c (eval_init): Register set-diff under two names: set-diff and diff. Register new isec and uni intrinsics. * lib.c (isec, uni): New functions. * lib.h (isec, uni): Declared. * txr.1: Documented new uni and isec functions, new diff function name, and the deprecation of set-diff and its order guarantee w.r.t the left sequence.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 058c7c09..fbef1b81 100644
--- a/eval.c
+++ b/eval.c
@@ -5435,6 +5435,7 @@ void eval_init(void)
val not_null_f = func_n1(not_null);
val me_each_f = func_n2(me_each);
val me_for_f = func_n2(me_for);
+ val diff_f = func_n4o(set_diff, 2);
protect(&top_vb, &top_fb, &top_mb, &top_smb, &special, &builtin, &dyn_env,
&op_table, &pm_table, &last_form_evaled, &last_form_expanded,
@@ -6148,7 +6149,10 @@ void eval_init(void)
reg_fun(intern(lit("find-max"), user_package), func_n3o(find_max, 1));
reg_fun(intern(lit("find-min"), user_package), func_n3o(find_min, 1));
reg_fun(intern(lit("multi-sort"), user_package), func_n3o(multi_sort, 2));
- reg_fun(intern(lit("set-diff"), user_package), func_n4o(set_diff, 2));
+ reg_fun(intern(lit("set-diff"), user_package), diff_f);
+ reg_fun(intern(lit("diff"), user_package), diff_f);
+ reg_fun(intern(lit("isec"), user_package), func_n4o(isec, 2));
+ reg_fun(intern(lit("uni"), user_package), func_n4o(uni, 2));
reg_fun(intern(lit("seqp"), user_package), func_n1(seqp));
reg_fun(intern(lit("length"), user_package), func_n1(length));