Function: TAL-ENV

Documentation

Creates a fresh tal environment from the plist PAIRS.

Source

(defun tal-env (&rest pairs)
  "Creates a fresh tal environment from the plist PAIRS."
  (list
   (iterate (for (key value) :on pairs :by #'cddr)
            (collect (cons key value)))))
Source Context