* doc/lispref/sequences.texi: Update the documentation of `seq-let'
with the support of `&rest'.
(9 . "aaa") (9 . "zzz") (9 . "ppp") (9 . "fff")]
@end group
@end example
-
+
@xref{Sorting}, for more functions that perform sorting.
See @code{documentation} in @ref{Accessing Documentation}, for a
useful example of @code{sort}.
@var{arguments} can itself include sequences allowing for nested
destructuring.
+The @var{arguments} sequence can also include the `&rest' marker
+followed by a variable name to be bound to the rest of
+@code{sequence}.
+
@example
@group
(seq-let [first second] [1 2 3 4]
(list a b c))
@result{} (1 2 3)
@end group
+@group
+(seq-let [a b &rest others] [1 2 3 4]
+ others)
+@end group
+@result{} [3 4]
@end example
@end defmac