I have heard that the active symbol table is accessible within the Common Lisp runtime. Have I misunderstood?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
‘Symbol tables’ are called ‘packages’ in Common Lisp. See for example: Introduction to Packages, CL HyperSpec.
Several operations over packages are available in Common Lisp: The Packages Dictionary.
Symbols can be members of packages (being ‘interned’).
The variable *package* holds a package as a value, which is used by several operations that use a package as a default. An example is the ‘reader‘, which by default does a look up in the package of *package*.