Function: seq-copy

seq-copy is a byte-compiled function defined in seq.el.gz.

Signature

(seq-copy SEQUENCE)

Documentation

Return a shallow copy of SEQUENCE.

Other relevant functions are documented in the sequence group.

Shortdoc

;; sequence
(seq-copy '(a 2))
    => (a 2)

Implementations

(seq-copy SEQUENCE) in `seq.el'.

Undocumented

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/seq.el.gz
(cl-defgeneric seq-copy (sequence)
  "Return a shallow copy of SEQUENCE."
  (copy-sequence sequence))