Function: seq-concatenate

seq-concatenate is a byte-compiled function defined in transient.el.

Signature

(seq-concatenate TYPE SEQUENCE...)

Documentation

Concatenate SEQUENCES into a single sequence of type TYPE.

TYPE must be one of following symbols: vector, string or list.

Other relevant functions are documented in the sequence group.

Shortdoc

;; sequence
(seq-concatenate 'vector '(1 2) '(c d))
    => [1 2 c d]

Implementations

(type &rest sequences) in `seq-25.el'.

Undocumented

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
;; Could not find source code, showing raw function object.
#[385 "\300\301\"\262\302\267\202�\303\304\"\207\303\305\"\207\303\306\211\307\"\"\207\310\311\"\207"
      [mapcar seq-into-sequence #s(hash-table size 3 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data
					      (vector 12 string 17 list 22))
	      apply vconcat concat append
	      (nil)
	      error "Not a sequence type name: %S"]
      7 "\n\n(fn TYPE &rest SEQUENCES)"]