list-tail
-- r7rs
Definition accessor
;
list-ref-cons
(from vonuvoli
);Procedure variants:
((list-not-null range-offset) -> (list))
list-not-null
;range-offset
;list
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(list-tail list k)
Domain: It is an error if
list
has fewer thank
elements.Returns the sublist of
list
obtained by omitting the firstk
elements. Thelist-tail
procedure could be defined by(define list-tail (lambda (x k) (if (zero? k) x (list-tail (cdr x) (- k 1)))))
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.