Function: -fifth-item

-fifth-item is a byte-compiled function defined in dash.el.

Signature

(-fifth-item LIST)

Documentation

Return the fifth item of LIST, or nil if LIST is too short.

See also: -fourth-item, -last-item, etc.

View in manual

Source Code

;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -fifth-item (list)
  "Return the fifth item of LIST, or nil if LIST is too short.

See also: `-fourth-item', `-last-item', etc."
  (declare (pure t) (side-effect-free t))
  (car (cddr (cddr list))))