Function: seq-elt
seq-elt is a byte-compiled function defined in seq.el.gz.
Signature
(seq-elt SEQUENCE N)
Documentation
Return the Nth element of SEQUENCE.
Other relevant functions are documented in the sequence group.
Shortdoc
;; sequence
(seq-elt '(a b c) 1)
=> b
Implementations
(seq-elt SEQUENCE N) in `seq.el'.
Undocumented
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/seq.el.gz
;;; Basic seq functions that have to be implemented by new sequence types
(cl-defgeneric seq-elt (sequence n)
"Return the Nth element of SEQUENCE."
(elt sequence n))