summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-02-13 06:54:42 -0800
committerKaz Kylheku <kaz@kylheku.com>2019-02-13 06:54:42 -0800
commit014c61e860fce07cceee60efecd949a17e53f2ae (patch)
tree5a3ffb653eb25298582cbb458e53d804197076ff /lib.h
parentbb5d5d3efed8491ce2159abdf3da2114db91e5eb (diff)
downloadtxr-014c61e860fce07cceee60efecd949a17e53f2ae.tar.gz
txr-014c61e860fce07cceee60efecd949a17e53f2ae.tar.bz2
txr-014c61e860fce07cceee60efecd949a17e53f2ae.zip
optimizing diff, isec and uni for non-lists.
Also, these functions now support hashes. * eval.c (eval_init): Register only the deprecated set-diff to the set_diff function. The diff intrinsic is now going to the new function named diff. * lib.c (diff): New function. (isec, uni): Rewritten to use seq_iter_t. * lib.h (diff): Declared. * txr.1: Documentation updated.
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib.h b/lib.h
index 6d706b3d..08e7acb2 100644
--- a/lib.h
+++ b/lib.h
@@ -1078,6 +1078,7 @@ val drop_while(val pred, val seq, val keyfun);
val drop_until(val pred, val seq, val keyfun);
val in(val seq, val key, val testfun, val keyfun);
val set_diff(val list1, val list2, val testfun, val keyfun);
+val diff(val seq1, val seq2, val testfun, val keyfun);
val isec(val list1, val list2, val testfun, val keyfun);
val uni(val list1, val list2, val testfun, val keyfun);
val copy(val seq);