Add new function `seq-split'
* doc/lispref/sequences.texi (Sequence Functions): Document it. * lisp/emacs-lisp/seq.el (seq-split): New function. * lisp/emacs-lisp/shortdoc.el (sequence): Mention it.
This commit is contained in:
parent
a2f956a1d6
commit
b31680ef04
5 changed files with 56 additions and 0 deletions
|
@ -632,5 +632,20 @@ Signal an error if SEQUENCE is empty."
|
|||
;; we automatically highlight macros.
|
||||
(add-hook 'emacs-lisp-mode-hook #'seq--activate-font-lock-keywords))
|
||||
|
||||
(defun seq-split (sequence length)
|
||||
"Split SEQUENCE into a list of sub-sequences of at most LENGTH.
|
||||
All the sub-sequences will be of LENGTH, except the last one,
|
||||
which may be shorter."
|
||||
(when (< length 1)
|
||||
(error "Sub-sequence length must be larger than zero"))
|
||||
(let ((result nil)
|
||||
(seq-length (length sequence))
|
||||
(start 0))
|
||||
(while (< start seq-length)
|
||||
(push (seq-subseq sequence start
|
||||
(setq start (min seq-length (+ start length))))
|
||||
result))
|
||||
(nreverse result)))
|
||||
|
||||
(provide 'seq)
|
||||
;;; seq.el ends here
|
||||
|
|
|
@ -889,6 +889,8 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'),
|
|||
:eval (seq-subseq '(a b c d e) 2 4))
|
||||
(seq-take
|
||||
:eval (seq-take '(a b c d e) 3))
|
||||
(seq-split
|
||||
:eval (seq-split [0 1 2 3 5] 2))
|
||||
(seq-take-while
|
||||
:eval (seq-take-while #'cl-evenp [2 4 9 6 5]))
|
||||
(seq-uniq
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue