- lseq-take lseq iprocedure
- lseq-drop lseq iprocedure
lseq-take lazily returns the first i elements of lseq. lseq-drop returns all but the first i elements of lseq.
(lseq-take '(a b c d e) 2) ;=> (a b) (lseq-drop '(a b c d e) 2) ;=> (c d e)
lseq-drop is exactly equivalent to performing i lseq-rest operations on lseq.