Function: -select-columns
-select-columns is a byte-compiled function defined in dash.el.
Signature
(-select-columns COLUMNS TABLE)
Documentation
Select COLUMNS from TABLE.
TABLE is a list of lists where each element represents one row. It is assumed each row has the same length.
Each row is transformed such that only the specified COLUMNS are selected.
See also: -select-column, -select-by-indices
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -select-columns (columns table)
"Select COLUMNS from TABLE.
TABLE is a list of lists where each element represents one row.
It is assumed each row has the same length.
Each row is transformed such that only the specified COLUMNS are
selected.
See also: `-select-column', `-select-by-indices'"
(declare (pure t) (side-effect-free t))
(--map (-select-by-indices columns it) table))