Function: MAKE-STANDARD-TAL-ENVIRONMENT

Documentation

Returns an environment consisting of BINDING-SETS. Each binding set can be an alist, an object, a hash table, or any object for which the a method on LOOKUP-TAL-VARIABLE has been defined. See alse: TAL-ENV

Source

(defun make-standard-tal-environment (&rest binding-sets)
  "Returns an environment consisting of BINDING-SETS.

Each binding set can be an alist, an object, a hash table, or any
object for which the a method on LOOKUP-TAL-VARIABLE has been
defined.

See alse: TAL-ENV"
  (copy-list binding-sets))
Source Context