Function: cl-struct-sequence-type

cl-struct-sequence-type is an autoloaded and byte-compiled function defined in cl-macs.el.gz.

Signature

(cl-struct-sequence-type STRUCT-TYPE)

Documentation

Return the sequence used to build STRUCT-TYPE.

STRUCT-TYPE is a symbol naming a struct type. Return values are either vector, list or nil (and the latter indicates a record struct type.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-macs.el.gz
;;;###cl-autoload
(defun cl-struct-sequence-type (struct-type)
  "Return the sequence used to build STRUCT-TYPE.
STRUCT-TYPE is a symbol naming a struct type.  Return values are
either `vector', `list' or nil (and the latter indicates a
`record' struct type."
  (declare (side-effect-free t) (pure t))
  (cl--struct-class-type (cl--struct-get-class struct-type)))