aboutsummaryrefslogtreecommitdiff
path: root/doc/ref/guile/util.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ref/guile/util.texi')
-rw-r--r--doc/ref/guile/util.texi12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/ref/guile/util.texi b/doc/ref/guile/util.texi
index b5cce99a..f7cfe438 100644
--- a/doc/ref/guile/util.texi
+++ b/doc/ref/guile/util.texi
@@ -322,6 +322,18 @@ non-unique keys, returning all mathing records (instead of just the first).
@end defun
+@defun uniq lst
+@defunx univ lst
+@defunx unique lst
+Sequeeze repeated elements in the input, similar to uniq(1).
+Matches the semantics of @code{eq?}, @code{eqv?}, and @code{equal?}.
+@end defun
+
+@defun uniqx = lst
+Uniq, but takes a custom comparison procedure.
+@end defun
+
+
@defun vector-last v
Returns the last element of @var{v}.
@end defun