Function: s--aget

s--aget is a byte-compiled function defined in s.el.

Signature

(s--aget ALIST KEY)

Documentation

Get the value of KEY in ALIST.

Source Code

;; Defined in ~/.emacs.d/elpa/s-20220902.1511/s.el
(defun s--aget (alist key)
  "Get the value of KEY in ALIST."
  (declare (pure t) (side-effect-free t))
  (cdr (assoc-string key alist)))