Next: Introduction, Previous: (dir), Up: (dir) [Contents][Index]
This is the isolated Reference Manual, version 1.1, generated automatically by Declt version 3.0 "Montgomery Scott" on Tue Dec 22 12:25:44 2020 GMT+0.
• Introduction | What isolated is all about | |
• Systems | The systems documentation | |
• Files | The files documentation | |
• Packages | The packages documentation | |
• Definitions | The symbols documentation | |
• Indexes | Concepts, functions, variables and data types |
A isolated environment for Common Lisp code evaluation
Common Lisp expressions are evaluated in a isolated environment
which provides a subset of Common Lisp's features. In general, many
features related to symbols, packages and operating system have been
disabled. Some standard functions and macros have been replaced with
safer versions. The isolated is implemented in packages ISOLATED-IMPL
and ISOLATED-CL
. Function isolated:read-eval-print
is the interface
for isolated code evaluation.
Variable isolated:*env*
is the name of the isolated package used
for evaluation. Use function isolated:reset
to reset the package.
CL-USER> (ql:quickload "isolated")
CL-USER> (isolated:read-eval-print "(princ-to-string '(hello world))")
=> "(HELLO WORLD)"
CL-USER> (isolated:read-eval-print "(load \"~/quicklisp.lisp\")")
;; DISABLED-FEATURE: The feature LOAD is disabled.
NIL
To find the list of disabled symbols/features
(loop :for symbol :being :the :symbol :in (find-package :isolated-cl)
:when (get symbol :isolated-locked)
:collect symbol)
GitHub repository: https://github.com/kanru/cl-isolated
Copyright (C) 2014, 2020 Kan-Ru Chen <kanru@kanru.info>
Copyright (C) 2012-2013 Teemu Likonen <tlikonen@iki.fi>
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/agpl.html>.
This library was forked from Teemu Likonen's cl-eval-bot project. See https://github.com/tlikonen/cl-eval-bot for details.
Next: Files, Previous: Introduction, Up: Top [Contents][Index]
The main system appears first, followed by any subsystem dependency.
• The isolated system |
Kan-Ru Chen <kanru@kanru.info>
AGPLv3+
A isolated environment for Common Lisp code evaluation
1.1
alexandria
isolated.asd (file)
Files are sorted by type and then listed depth-first from the systems components trees.
• Lisp files |
• The isolated.asd file | ||
• The isolated/isolated-impl.lisp file | ||
• The isolated/isolated-cl.lisp file | ||
• The isolated/isolated.lisp file |
Next: The isolated/isolated-impl․lisp file, Previous: Lisp files, Up: Lisp files [Contents][Index]
isolated.asd
isolated (system)
Next: The isolated/isolated-cl․lisp file, Previous: The isolated․asd file, Up: Lisp files [Contents][Index]
isolated (system)
isolated-impl.lisp
Next: The isolated/isolated․lisp file, Previous: The isolated/isolated-impl․lisp file, Up: Lisp files [Contents][Index]
isolated-impl.lisp (file)
isolated (system)
isolated-cl.lisp
Previous: The isolated/isolated-cl․lisp file, Up: Lisp files [Contents][Index]
isolated-impl.lisp (file)
isolated (system)
isolated.lisp
Next: Definitions, Previous: Files, Up: Top [Contents][Index]
Packages are listed by definition order.
• The isolated-impl package | ||
• The isolated-cl package | ||
• The isolated package |
Next: The isolated-cl package, Previous: Packages, Up: Packages [Contents][Index]
isolated-impl.lisp (file)
common-lisp
Next: The isolated package, Previous: The isolated-impl package, Up: Packages [Contents][Index]
isolated-cl.lisp (file)
Previous: The isolated-cl package, Up: Packages [Contents][Index]
isolated.lisp (file)
Definitions are sorted by export status, category, package, and then by lexicographic order.
• Exported definitions | ||
• Internal definitions |
Next: Internal definitions, Previous: Definitions, Up: Definitions [Contents][Index]
• Exported special variables | ||
• Exported macros | ||
• Exported functions | ||
• Exported conditions |
Next: Exported macros, Previous: Exported definitions, Up: Exported definitions [Contents][Index]
isolated-impl.lisp (file)
isolated-impl.lisp (file)
Next: Exported functions, Previous: Exported special variables, Up: Exported definitions [Contents][Index]
isolated-cl.lisp (file)
(setf abort) (setf expander)
/builds/quickref/quickref/bin/declt
abort (macro)
isolated-cl.lisp (file)
(setf add-method) (setf expander)
/builds/quickref/quickref/bin/declt
add-method (macro)
isolated-cl.lisp (file)
(setf allocate-instance) (setf expander)
/builds/quickref/quickref/bin/declt
allocate-instance (macro)
isolated-cl.lisp (file)
(setf apropos) (setf expander)
/builds/quickref/quickref/bin/declt
apropos (macro)
isolated-cl.lisp (file)
(setf apropos-list) (setf expander)
/builds/quickref/quickref/bin/declt
apropos-list (macro)
isolated-cl.lisp (file)
(setf arithmetic-error-operands) (setf expander)
/builds/quickref/quickref/bin/declt
arithmetic-error-operands (macro)
isolated-cl.lisp (file)
(setf arithmetic-error-operation) (setf expander)
/builds/quickref/quickref/bin/declt
arithmetic-error-operation (macro)
isolated-cl.lisp (file)
(setf assert) (setf expander)
/builds/quickref/quickref/bin/declt
assert (macro)
isolated-cl.lisp (file)
(setf break) (setf expander)
/builds/quickref/quickref/bin/declt
break (macro)
isolated-cl.lisp (file)
(setf broadcast-stream-streams) (setf expander)
/builds/quickref/quickref/bin/declt
broadcast-stream-streams (macro)
isolated-cl.lisp (file)
(setf call-method) (setf expander)
/builds/quickref/quickref/bin/declt
call-method (macro)
isolated-cl.lisp (file)
(setf call-next-method) (setf expander)
/builds/quickref/quickref/bin/declt
call-next-method (macro)
isolated-cl.lisp (file)
(setf catch) (setf expander)
/builds/quickref/quickref/bin/declt
catch (macro)
isolated-cl.lisp (file)
(setf cell-error-name) (setf expander)
/builds/quickref/quickref/bin/declt
cell-error-name (macro)
isolated-cl.lisp (file)
(setf cerror) (setf expander)
/builds/quickref/quickref/bin/declt
cerror (macro)
isolated-cl.lisp (file)
(setf change-class) (setf expander)
/builds/quickref/quickref/bin/declt
change-class (macro)
isolated-cl.lisp (file)
(setf check-type) (setf expander)
/builds/quickref/quickref/bin/declt
check-type (macro)
isolated-cl.lisp (file)
(setf class-name) (setf expander)
/builds/quickref/quickref/bin/declt
class-name (macro)
isolated-cl.lisp (file)
(setf compile) (setf expander)
/builds/quickref/quickref/bin/declt
compile (macro)
isolated-cl.lisp (file)
(setf compile-file) (setf expander)
/builds/quickref/quickref/bin/declt
compile-file (macro)
isolated-cl.lisp (file)
(setf compile-file-pathname) (setf expander)
/builds/quickref/quickref/bin/declt
compile-file-pathname (macro)
isolated-cl.lisp (file)
(setf compiler-macro-function) (setf expander)
/builds/quickref/quickref/bin/declt
compiler-macro-function (macro)
isolated-cl.lisp (file)
(setf compute-applicable-methods) (setf expander)
/builds/quickref/quickref/bin/declt
compute-applicable-methods (macro)
isolated-cl.lisp (file)
(setf compute-restarts) (setf expander)
/builds/quickref/quickref/bin/declt
compute-restarts (macro)
isolated-cl.lisp (file)
(setf concatenated-stream-streams) (setf expander)
/builds/quickref/quickref/bin/declt
concatenated-stream-streams (macro)
isolated-cl.lisp (file)
(setf continue) (setf expander)
/builds/quickref/quickref/bin/declt
continue (macro)
isolated-cl.lisp (file)
(setf copy-pprint-dispatch) (setf expander)
/builds/quickref/quickref/bin/declt
copy-pprint-dispatch (macro)
isolated-cl.lisp (file)
(setf copy-readtable) (setf expander)
/builds/quickref/quickref/bin/declt
copy-readtable (macro)
isolated-cl.lisp (file)
(setf copy-structure) (setf expander)
/builds/quickref/quickref/bin/declt
copy-structure (macro)
isolated-cl.lisp (file)
(setf copy-symbol) (setf expander)
/builds/quickref/quickref/bin/declt
copy-symbol (macro)
isolated-cl.lisp (file)
(setf declaim) (setf expander)
/builds/quickref/quickref/bin/declt
declaim (macro)
isolated-cl.lisp (file)
(setf declare) (setf expander)
/builds/quickref/quickref/bin/declt
declare (macro)
isolated-cl.lisp (file)
(setf defclass) (setf expander)
/builds/quickref/quickref/bin/declt
defclass (macro)
isolated-cl.lisp (file)
(setf defconstant) (setf expander)
/builds/quickref/quickref/bin/declt
defconstant (macro)
isolated-cl.lisp (file)
(setf defgeneric) (setf expander)
/builds/quickref/quickref/bin/declt
defgeneric (macro)
isolated-cl.lisp (file)
(setf define-compiler-macro) (setf expander)
/builds/quickref/quickref/bin/declt
define-compiler-macro (macro)
isolated-cl.lisp (file)
(setf define-condition) (setf expander)
/builds/quickref/quickref/bin/declt
define-condition (macro)
isolated-cl.lisp (file)
(setf define-method-combination) (setf expander)
/builds/quickref/quickref/bin/declt
define-method-combination (macro)
isolated-cl.lisp (file)
(setf define-modify-macro) (setf expander)
/builds/quickref/quickref/bin/declt
define-modify-macro (macro)
isolated-cl.lisp (file)
(setf define-setf-expander) (setf expander)
/builds/quickref/quickref/bin/declt
define-setf-expander (macro)
isolated-cl.lisp (file)
(setf define-symbol-macro) (setf expander)
/builds/quickref/quickref/bin/declt
define-symbol-macro (macro)
isolated-cl.lisp (file)
isolated-cl.lisp (file)
(setf defmethod) (setf expander)
/builds/quickref/quickref/bin/declt
defmethod (macro)
isolated-cl.lisp (file)
(setf defpackage) (setf expander)
/builds/quickref/quickref/bin/declt
defpackage (macro)
isolated-cl.lisp (file)
(setf defsetf) (setf expander)
/builds/quickref/quickref/bin/declt
defsetf (macro)
isolated-cl.lisp (file)
(setf defstruct) (setf expander)
/builds/quickref/quickref/bin/declt
defstruct (macro)
isolated-cl.lisp (file)
(setf deftype) (setf expander)
/builds/quickref/quickref/bin/declt
deftype (macro)
isolated-cl.lisp (file)
isolated-cl.lisp (file)
(setf delete-file) (setf expander)
/builds/quickref/quickref/bin/declt
delete-file (macro)
isolated-cl.lisp (file)
(setf delete-package) (setf expander)
/builds/quickref/quickref/bin/declt
delete-package (macro)
isolated-cl.lisp (file)
(setf describe) (setf expander)
/builds/quickref/quickref/bin/declt
describe (macro)
isolated-cl.lisp (file)
(setf describe-object) (setf expander)
/builds/quickref/quickref/bin/declt
describe-object (macro)
isolated-cl.lisp (file)
(setf directory) (setf expander)
/builds/quickref/quickref/bin/declt
directory (macro)
isolated-cl.lisp (file)
(setf disassemble) (setf expander)
/builds/quickref/quickref/bin/declt
disassemble (macro)
isolated-cl.lisp (file)
(setf do-all-symbols) (setf expander)
/builds/quickref/quickref/bin/declt
do-all-symbols (macro)
isolated-cl.lisp (file)
(setf do-external-symbols) (setf expander)
/builds/quickref/quickref/bin/declt
do-external-symbols (macro)
isolated-cl.lisp (file)
(setf do-symbols) (setf expander)
/builds/quickref/quickref/bin/declt
do-symbols (macro)
isolated-cl.lisp (file)
(setf documentation) (setf expander)
/builds/quickref/quickref/bin/declt
documentation (macro)
isolated-cl.lisp (file)
(setf dribble) (setf expander)
/builds/quickref/quickref/bin/declt
dribble (macro)
isolated-cl.lisp (file)
(setf ed) (setf expander)
/builds/quickref/quickref/bin/declt
ed (macro)
isolated-cl.lisp (file)
(setf enough-namestring) (setf expander)
/builds/quickref/quickref/bin/declt
enough-namestring (macro)
isolated-cl.lisp (file)
(setf ensure-directories-exist) (setf expander)
/builds/quickref/quickref/bin/declt
ensure-directories-exist (macro)
isolated-cl.lisp (file)
(setf ensure-generic-function) (setf expander)
/builds/quickref/quickref/bin/declt
ensure-generic-function (macro)
isolated-cl.lisp (file)
(setf error) (setf expander)
/builds/quickref/quickref/bin/declt
error (macro)
isolated-cl.lisp (file)
(setf eval-when) (setf expander)
/builds/quickref/quickref/bin/declt
eval-when (macro)
isolated-cl.lisp (file)
(setf export) (setf expander)
/builds/quickref/quickref/bin/declt
export (macro)
isolated-cl.lisp (file)
(setf fdefinition) (setf expander)
/builds/quickref/quickref/bin/declt
fdefinition (macro)
isolated-cl.lisp (file)
(setf file-author) (setf expander)
/builds/quickref/quickref/bin/declt
file-author (macro)
isolated-cl.lisp (file)
(setf file-error-pathname) (setf expander)
/builds/quickref/quickref/bin/declt
file-error-pathname (macro)
isolated-cl.lisp (file)
(setf file-length) (setf expander)
/builds/quickref/quickref/bin/declt
file-length (macro)
isolated-cl.lisp (file)
(setf file-string-length) (setf expander)
/builds/quickref/quickref/bin/declt
file-string-length (macro)
isolated-cl.lisp (file)
(setf file-write-date) (setf expander)
/builds/quickref/quickref/bin/declt
file-write-date (macro)
isolated-cl.lisp (file)
(setf find-all-symbols) (setf expander)
/builds/quickref/quickref/bin/declt
find-all-symbols (macro)
isolated-cl.lisp (file)
(setf find-class) (setf expander)
/builds/quickref/quickref/bin/declt
find-class (macro)
isolated-cl.lisp (file)
(setf find-method) (setf expander)
/builds/quickref/quickref/bin/declt
find-method (macro)
isolated-cl.lisp (file)
(setf find-package) (setf expander)
/builds/quickref/quickref/bin/declt
find-package (macro)
isolated-cl.lisp (file)
(setf find-restart) (setf expander)
/builds/quickref/quickref/bin/declt
find-restart (macro)
isolated-cl.lisp (file)
(setf find-symbol) (setf expander)
/builds/quickref/quickref/bin/declt
find-symbol (macro)
isolated-cl.lisp (file)
(setf fmakunbound) (setf expander)
/builds/quickref/quickref/bin/declt
fmakunbound (macro)
isolated-cl.lisp (file)
(setf format) (setf expander)
/builds/quickref/quickref/bin/declt
format (macro)
isolated-cl.lisp (file)
(setf formatter) (setf expander)
/builds/quickref/quickref/bin/declt
formatter (macro)
isolated-cl.lisp (file)
(setf function-keywords) (setf expander)
/builds/quickref/quickref/bin/declt
function-keywords (macro)
isolated-cl.lisp (file)
(setf function-lambda-expression) (setf expander)
/builds/quickref/quickref/bin/declt
function-lambda-expression (macro)
isolated-cl.lisp (file)
(setf gensym) (setf expander)
/builds/quickref/quickref/bin/declt
gensym (macro)
isolated-cl.lisp (file)
(setf gentemp) (setf expander)
/builds/quickref/quickref/bin/declt
gentemp (macro)
isolated-cl.lisp (file)
(setf get) (setf expander)
/builds/quickref/quickref/bin/declt
get (macro)
isolated-cl.lisp (file)
(setf get-dispatch-macro-character) (setf expander)
/builds/quickref/quickref/bin/declt
get-dispatch-macro-character (macro)
isolated-cl.lisp (file)
(setf get-internal-real-time) (setf expander)
/builds/quickref/quickref/bin/declt
get-internal-real-time (macro)
isolated-cl.lisp (file)
(setf get-internal-run-time) (setf expander)
/builds/quickref/quickref/bin/declt
get-internal-run-time (macro)
isolated-cl.lisp (file)
(setf get-macro-character) (setf expander)
/builds/quickref/quickref/bin/declt
get-macro-character (macro)
isolated-cl.lisp (file)
(setf get-setf-expansion) (setf expander)
/builds/quickref/quickref/bin/declt
get-setf-expansion (macro)
isolated-cl.lisp (file)
(setf handler-bind) (setf expander)
/builds/quickref/quickref/bin/declt
handler-bind (macro)
isolated-cl.lisp (file)
(setf handler-case) (setf expander)
/builds/quickref/quickref/bin/declt
handler-case (macro)
isolated-cl.lisp (file)
(setf host-namestring) (setf expander)
/builds/quickref/quickref/bin/declt
host-namestring (macro)
isolated-cl.lisp (file)
(setf ignore-errors) (setf expander)
/builds/quickref/quickref/bin/declt
ignore-errors (macro)
isolated-cl.lisp (file)
(setf import) (setf expander)
/builds/quickref/quickref/bin/declt
import (macro)
isolated-cl.lisp (file)
(setf in-package) (setf expander)
/builds/quickref/quickref/bin/declt
in-package (macro)
isolated-cl.lisp (file)
(setf initialize-instance) (setf expander)
/builds/quickref/quickref/bin/declt
initialize-instance (macro)
isolated-cl.lisp (file)
(setf inspect) (setf expander)
/builds/quickref/quickref/bin/declt
inspect (macro)
isolated-cl.lisp (file)
(setf intern) (setf expander)
/builds/quickref/quickref/bin/declt
intern (macro)
isolated-cl.lisp (file)
(setf invalid-method-error) (setf expander)
/builds/quickref/quickref/bin/declt
invalid-method-error (macro)
isolated-cl.lisp (file)
(setf invoke-debugger) (setf expander)
/builds/quickref/quickref/bin/declt
invoke-debugger (macro)
isolated-cl.lisp (file)
(setf invoke-restart) (setf expander)
/builds/quickref/quickref/bin/declt
invoke-restart (macro)
isolated-cl.lisp (file)
(setf invoke-restart-interactively) (setf expander)
/builds/quickref/quickref/bin/declt
invoke-restart-interactively (macro)
isolated-cl.lisp (file)
(setf list-all-packages) (setf expander)
/builds/quickref/quickref/bin/declt
list-all-packages (macro)
isolated-cl.lisp (file)
(setf load) (setf expander)
/builds/quickref/quickref/bin/declt
load (macro)
isolated-cl.lisp (file)
(setf load-logical-pathname-translations) (setf expander)
/builds/quickref/quickref/bin/declt
isolated-cl.lisp (file)
(setf load-time-value) (setf expander)
/builds/quickref/quickref/bin/declt
load-time-value (macro)
isolated-cl.lisp (file)
(setf locally) (setf expander)
/builds/quickref/quickref/bin/declt
locally (macro)
isolated-cl.lisp (file)
(setf logical-pathname) (setf expander)
/builds/quickref/quickref/bin/declt
logical-pathname (macro)
isolated-cl.lisp (file)
(setf logical-pathname-translations) (setf expander)
/builds/quickref/quickref/bin/declt
logical-pathname-translations (macro)
isolated-cl.lisp (file)
(setf long-site-name) (setf expander)
/builds/quickref/quickref/bin/declt
long-site-name (macro)
isolated-cl.lisp (file)
(setf loop) (setf expander)
/builds/quickref/quickref/bin/declt
loop (macro)
isolated-cl.lisp (file)
(setf machine-instance) (setf expander)
/builds/quickref/quickref/bin/declt
machine-instance (macro)
isolated-cl.lisp (file)
(setf machine-type) (setf expander)
/builds/quickref/quickref/bin/declt
machine-type (macro)
isolated-cl.lisp (file)
(setf machine-version) (setf expander)
/builds/quickref/quickref/bin/declt
machine-version (macro)
isolated-cl.lisp (file)
(setf macro-function) (setf expander)
/builds/quickref/quickref/bin/declt
macro-function (macro)
isolated-cl.lisp (file)
(setf macroexpand) (setf expander)
/builds/quickref/quickref/bin/declt
macroexpand (macro)
isolated-cl.lisp (file)
(setf macroexpand-1) (setf expander)
/builds/quickref/quickref/bin/declt
macroexpand-1 (macro)
isolated-cl.lisp (file)
(setf make-broadcast-stream) (setf expander)
/builds/quickref/quickref/bin/declt
make-broadcast-stream (macro)
isolated-cl.lisp (file)
(setf make-concatenated-stream) (setf expander)
/builds/quickref/quickref/bin/declt
make-concatenated-stream (macro)
isolated-cl.lisp (file)
(setf make-condition) (setf expander)
/builds/quickref/quickref/bin/declt
make-condition (macro)
isolated-cl.lisp (file)
(setf make-dispatch-macro-character) (setf expander)
/builds/quickref/quickref/bin/declt
make-dispatch-macro-character (macro)
isolated-cl.lisp (file)
(setf make-echo-stream) (setf expander)
/builds/quickref/quickref/bin/declt
make-echo-stream (macro)
isolated-cl.lisp (file)
(setf make-instance) (setf expander)
/builds/quickref/quickref/bin/declt
make-instance (macro)
isolated-cl.lisp (file)
(setf make-instances-obsolete) (setf expander)
/builds/quickref/quickref/bin/declt
make-instances-obsolete (macro)
isolated-cl.lisp (file)
(setf make-load-form) (setf expander)
/builds/quickref/quickref/bin/declt
make-load-form (macro)
isolated-cl.lisp (file)
(setf make-load-form-saving-slots) (setf expander)
/builds/quickref/quickref/bin/declt
make-load-form-saving-slots (macro)
isolated-cl.lisp (file)
(setf make-method) (setf expander)
/builds/quickref/quickref/bin/declt
make-method (macro)
isolated-cl.lisp (file)
(setf make-package) (setf expander)
/builds/quickref/quickref/bin/declt
make-package (macro)
isolated-cl.lisp (file)
(setf make-string-input-stream) (setf expander)
/builds/quickref/quickref/bin/declt
make-string-input-stream (macro)
isolated-cl.lisp (file)
(setf make-string-output-stream) (setf expander)
/builds/quickref/quickref/bin/declt
make-string-output-stream (macro)
isolated-cl.lisp (file)
(setf make-symbol) (setf expander)
/builds/quickref/quickref/bin/declt
make-symbol (macro)
isolated-cl.lisp (file)
(setf make-synonym-stream) (setf expander)
/builds/quickref/quickref/bin/declt
make-synonym-stream (macro)
isolated-cl.lisp (file)
(setf make-two-way-stream) (setf expander)
/builds/quickref/quickref/bin/declt
make-two-way-stream (macro)
isolated-cl.lisp (file)
(setf makunbound) (setf expander)
/builds/quickref/quickref/bin/declt
makunbound (macro)
isolated-cl.lisp (file)
(setf method-combination-error) (setf expander)
/builds/quickref/quickref/bin/declt
method-combination-error (macro)
isolated-cl.lisp (file)
(setf method-qualifiers) (setf expander)
/builds/quickref/quickref/bin/declt
method-qualifiers (macro)
isolated-cl.lisp (file)
(setf muffle-warning) (setf expander)
/builds/quickref/quickref/bin/declt
muffle-warning (macro)
isolated-cl.lisp (file)
(setf next-method-p) (setf expander)
/builds/quickref/quickref/bin/declt
next-method-p (macro)
isolated-cl.lisp (file)
(setf no-applicable-method) (setf expander)
/builds/quickref/quickref/bin/declt
no-applicable-method (macro)
isolated-cl.lisp (file)
(setf open) (setf expander)
/builds/quickref/quickref/bin/declt
open (macro)
isolated-cl.lisp (file)
(setf package-error-package) (setf expander)
/builds/quickref/quickref/bin/declt
package-error-package (macro)
isolated-cl.lisp (file)
(setf package-name) (setf expander)
/builds/quickref/quickref/bin/declt
package-name (macro)
isolated-cl.lisp (file)
(setf package-nicknames) (setf expander)
/builds/quickref/quickref/bin/declt
package-nicknames (macro)
isolated-cl.lisp (file)
(setf package-shadowing-symbols) (setf expander)
/builds/quickref/quickref/bin/declt
package-shadowing-symbols (macro)
isolated-cl.lisp (file)
(setf package-use-list) (setf expander)
/builds/quickref/quickref/bin/declt
package-use-list (macro)
isolated-cl.lisp (file)
(setf package-used-by-list) (setf expander)
/builds/quickref/quickref/bin/declt
package-used-by-list (macro)
isolated-cl.lisp (file)
(setf packagep) (setf expander)
/builds/quickref/quickref/bin/declt
packagep (macro)
isolated-cl.lisp (file)
(setf pathname-device) (setf expander)
/builds/quickref/quickref/bin/declt
pathname-device (macro)
isolated-cl.lisp (file)
(setf pathname-host) (setf expander)
/builds/quickref/quickref/bin/declt
pathname-host (macro)
isolated-cl.lisp (file)
(setf pprint-dispatch) (setf expander)
/builds/quickref/quickref/bin/declt
pprint-dispatch (macro)
isolated-cl.lisp (file)
(setf pprint-exit-if-list-exhausted) (setf expander)
/builds/quickref/quickref/bin/declt
pprint-exit-if-list-exhausted (macro)
isolated-cl.lisp (file)
(setf pprint-fill) (setf expander)
/builds/quickref/quickref/bin/declt
pprint-fill (macro)
isolated-cl.lisp (file)
(setf pprint-indent) (setf expander)
/builds/quickref/quickref/bin/declt
pprint-indent (macro)
isolated-cl.lisp (file)
(setf pprint-linear) (setf expander)
/builds/quickref/quickref/bin/declt
pprint-linear (macro)
isolated-cl.lisp (file)
(setf pprint-logical-block) (setf expander)
/builds/quickref/quickref/bin/declt
pprint-logical-block (macro)
isolated-cl.lisp (file)
(setf pprint-newline) (setf expander)
/builds/quickref/quickref/bin/declt
pprint-newline (macro)
isolated-cl.lisp (file)
(setf pprint-pop) (setf expander)
/builds/quickref/quickref/bin/declt
pprint-pop (macro)
isolated-cl.lisp (file)
(setf pprint-tab) (setf expander)
/builds/quickref/quickref/bin/declt
pprint-tab (macro)
isolated-cl.lisp (file)
(setf pprint-tabular) (setf expander)
/builds/quickref/quickref/bin/declt
pprint-tabular (macro)
isolated-cl.lisp (file)
(setf print-not-readable-object) (setf expander)
/builds/quickref/quickref/bin/declt
print-not-readable-object (macro)
isolated-cl.lisp (file)
(setf print-object) (setf expander)
/builds/quickref/quickref/bin/declt
print-object (macro)
isolated-cl.lisp (file)
(setf print-unreadable-object) (setf expander)
/builds/quickref/quickref/bin/declt
print-unreadable-object (macro)
isolated-cl.lisp (file)
(setf probe-file) (setf expander)
/builds/quickref/quickref/bin/declt
probe-file (macro)
isolated-cl.lisp (file)
(setf proclaim) (setf expander)
/builds/quickref/quickref/bin/declt
proclaim (macro)
isolated-cl.lisp (file)
(setf provide) (setf expander)
/builds/quickref/quickref/bin/declt
provide (macro)
isolated-cl.lisp (file)
(setf read-byte) (setf expander)
/builds/quickref/quickref/bin/declt
read-byte (macro)
isolated-cl.lisp (file)
(setf read-delimited-list) (setf expander)
/builds/quickref/quickref/bin/declt
read-delimited-list (macro)
isolated-cl.lisp (file)
(setf read-preserving-whitespace) (setf expander)
/builds/quickref/quickref/bin/declt
read-preserving-whitespace (macro)
isolated-cl.lisp (file)
(setf readtable-case) (setf expander)
/builds/quickref/quickref/bin/declt
readtable-case (macro)
isolated-cl.lisp (file)
(setf readtablep) (setf expander)
/builds/quickref/quickref/bin/declt
readtablep (macro)
isolated-cl.lisp (file)
(setf reinitialize-instance) (setf expander)
/builds/quickref/quickref/bin/declt
reinitialize-instance (macro)
isolated-cl.lisp (file)
(setf remove-method) (setf expander)
/builds/quickref/quickref/bin/declt
remove-method (macro)
isolated-cl.lisp (file)
(setf remprop) (setf expander)
/builds/quickref/quickref/bin/declt
remprop (macro)
isolated-cl.lisp (file)
(setf rename-file) (setf expander)
/builds/quickref/quickref/bin/declt
rename-file (macro)
isolated-cl.lisp (file)
(setf rename-package) (setf expander)
/builds/quickref/quickref/bin/declt
rename-package (macro)
isolated-cl.lisp (file)
(setf require) (setf expander)
/builds/quickref/quickref/bin/declt
require (macro)
isolated-cl.lisp (file)
(setf restart-bind) (setf expander)
/builds/quickref/quickref/bin/declt
restart-bind (macro)
isolated-cl.lisp (file)
(setf restart-case) (setf expander)
/builds/quickref/quickref/bin/declt
restart-case (macro)
isolated-cl.lisp (file)
(setf restart-name) (setf expander)
/builds/quickref/quickref/bin/declt
restart-name (macro)
isolated-cl.lisp (file)
(setf room) (setf expander)
/builds/quickref/quickref/bin/declt
room (macro)
isolated-cl.lisp (file)
(setf set) (setf expander)
/builds/quickref/quickref/bin/declt
set (macro)
isolated-cl.lisp (file)
(setf set-dispatch-macro-character) (setf expander)
/builds/quickref/quickref/bin/declt
set-dispatch-macro-character (macro)
isolated-cl.lisp (file)
(setf set-macro-character) (setf expander)
/builds/quickref/quickref/bin/declt
set-macro-character (macro)
isolated-cl.lisp (file)
(setf set-ppring-dispatch) (setf expander)
/builds/quickref/quickref/bin/declt
set-ppring-dispatch (macro)
isolated-cl.lisp (file)
(setf set-syntax-from-char) (setf expander)
/builds/quickref/quickref/bin/declt
set-syntax-from-char (macro)
isolated-cl.lisp (file)
(setf shadow) (setf expander)
/builds/quickref/quickref/bin/declt
shadow (macro)
isolated-cl.lisp (file)
(setf shadowing-import) (setf expander)
/builds/quickref/quickref/bin/declt
shadowing-import (macro)
isolated-cl.lisp (file)
(setf shared-initialize) (setf expander)
/builds/quickref/quickref/bin/declt
shared-initialize (macro)
isolated-cl.lisp (file)
(setf short-site-name) (setf expander)
/builds/quickref/quickref/bin/declt
short-site-name (macro)
isolated-cl.lisp (file)
(setf signal) (setf expander)
/builds/quickref/quickref/bin/declt
signal (macro)
isolated-cl.lisp (file)
(setf simple-condition-format-arguments) (setf expander)
/builds/quickref/quickref/bin/declt
isolated-cl.lisp (file)
(setf simple-condition-format-control) (setf expander)
/builds/quickref/quickref/bin/declt
simple-condition-format-control (macro)
isolated-cl.lisp (file)
(setf slot-boundp) (setf expander)
/builds/quickref/quickref/bin/declt
slot-boundp (macro)
isolated-cl.lisp (file)
(setf slot-exists-p) (setf expander)
/builds/quickref/quickref/bin/declt
slot-exists-p (macro)
isolated-cl.lisp (file)
(setf slot-makunbound) (setf expander)
/builds/quickref/quickref/bin/declt
slot-makunbound (macro)
isolated-cl.lisp (file)
(setf slot-missing) (setf expander)
/builds/quickref/quickref/bin/declt
slot-missing (macro)
isolated-cl.lisp (file)
(setf slot-unbound) (setf expander)
/builds/quickref/quickref/bin/declt
slot-unbound (macro)
isolated-cl.lisp (file)
(setf slot-value) (setf expander)
/builds/quickref/quickref/bin/declt
slot-value (macro)
isolated-cl.lisp (file)
(setf software-type) (setf expander)
/builds/quickref/quickref/bin/declt
software-type (macro)
isolated-cl.lisp (file)
(setf software-version) (setf expander)
/builds/quickref/quickref/bin/declt
software-version (macro)
isolated-cl.lisp (file)
(setf step) (setf expander)
/builds/quickref/quickref/bin/declt
step (macro)
isolated-cl.lisp (file)
(setf store-value) (setf expander)
/builds/quickref/quickref/bin/declt
store-value (macro)
isolated-cl.lisp (file)
(setf stream-error-stream) (setf expander)
/builds/quickref/quickref/bin/declt
stream-error-stream (macro)
isolated-cl.lisp (file)
(setf stream-external-format) (setf expander)
/builds/quickref/quickref/bin/declt
stream-external-format (macro)
isolated-cl.lisp (file)
(setf symbol-function) (setf expander)
/builds/quickref/quickref/bin/declt
symbol-function (macro)
isolated-cl.lisp (file)
(setf symbol-macrolet) (setf expander)
/builds/quickref/quickref/bin/declt
symbol-macrolet (macro)
isolated-cl.lisp (file)
(setf symbol-package) (setf expander)
/builds/quickref/quickref/bin/declt
symbol-package (macro)
isolated-cl.lisp (file)
(setf symbol-plist) (setf expander)
/builds/quickref/quickref/bin/declt
symbol-plist (macro)
isolated-cl.lisp (file)
(setf symbol-value) (setf expander)
/builds/quickref/quickref/bin/declt
symbol-value (macro)
isolated-cl.lisp (file)
(setf synonym-stream-symbol) (setf expander)
/builds/quickref/quickref/bin/declt
synonym-stream-symbol (macro)
isolated-cl.lisp (file)
(setf the) (setf expander)
/builds/quickref/quickref/bin/declt
the (macro)
isolated-cl.lisp (file)
(setf throw) (setf expander)
/builds/quickref/quickref/bin/declt
throw (macro)
isolated-cl.lisp (file)
(setf time) (setf expander)
/builds/quickref/quickref/bin/declt
time (macro)
isolated-cl.lisp (file)
(setf trace) (setf expander)
/builds/quickref/quickref/bin/declt
trace (macro)
isolated-cl.lisp (file)
(setf translate-logical-pathname) (setf expander)
/builds/quickref/quickref/bin/declt
translate-logical-pathname (macro)
isolated-cl.lisp (file)
(setf truename) (setf expander)
/builds/quickref/quickref/bin/declt
truename (macro)
isolated-cl.lisp (file)
(setf two-way-stream-input-stream) (setf expander)
/builds/quickref/quickref/bin/declt
two-way-stream-input-stream (macro)
isolated-cl.lisp (file)
(setf two-way-stream-output-stream) (setf expander)
/builds/quickref/quickref/bin/declt
two-way-stream-output-stream (macro)
isolated-cl.lisp (file)
(setf unbound-slot-instance) (setf expander)
/builds/quickref/quickref/bin/declt
unbound-slot-instance (macro)
isolated-cl.lisp (file)
(setf unexport) (setf expander)
/builds/quickref/quickref/bin/declt
unexport (macro)
isolated-cl.lisp (file)
(setf unintern) (setf expander)
/builds/quickref/quickref/bin/declt
unintern (macro)
isolated-cl.lisp (file)
(setf untrace) (setf expander)
/builds/quickref/quickref/bin/declt
untrace (macro)
isolated-cl.lisp (file)
(setf unuse-package) (setf expander)
/builds/quickref/quickref/bin/declt
unuse-package (macro)
isolated-cl.lisp (file)
(setf unwind-protect) (setf expander)
/builds/quickref/quickref/bin/declt
unwind-protect (macro)
isolated-cl.lisp (file)
(setf update-instance-for-different-class) (setf expander)
/builds/quickref/quickref/bin/declt
isolated-cl.lisp (file)
(setf update-instance-for-redefined-class) (setf expander)
/builds/quickref/quickref/bin/declt
isolated-cl.lisp (file)
(setf use-package) (setf expander)
/builds/quickref/quickref/bin/declt
use-package (macro)
isolated-cl.lisp (file)
(setf use-value) (setf expander)
/builds/quickref/quickref/bin/declt
use-value (macro)
isolated-cl.lisp (file)
(setf warn) (setf expander)
/builds/quickref/quickref/bin/declt
warn (macro)
isolated-cl.lisp (file)
(setf with-accessors) (setf expander)
/builds/quickref/quickref/bin/declt
with-accessors (macro)
isolated-cl.lisp (file)
(setf with-compilation-unit) (setf expander)
/builds/quickref/quickref/bin/declt
with-compilation-unit (macro)
isolated-cl.lisp (file)
(setf with-condition-restarts) (setf expander)
/builds/quickref/quickref/bin/declt
with-condition-restarts (macro)
isolated-impl.lisp (file)
isolated-cl.lisp (file)
(setf with-open-file) (setf expander)
/builds/quickref/quickref/bin/declt
with-open-file (macro)
isolated-cl.lisp (file)
(setf with-open-stream) (setf expander)
/builds/quickref/quickref/bin/declt
with-open-stream (macro)
isolated-cl.lisp (file)
(setf with-package-iterator) (setf expander)
/builds/quickref/quickref/bin/declt
with-package-iterator (macro)
isolated-cl.lisp (file)
(setf with-simple-restart) (setf expander)
/builds/quickref/quickref/bin/declt
with-simple-restart (macro)
isolated-cl.lisp (file)
(setf with-slots) (setf expander)
/builds/quickref/quickref/bin/declt
with-slots (macro)
isolated-cl.lisp (file)
(setf with-standard-io-syntax) (setf expander)
/builds/quickref/quickref/bin/declt
with-standard-io-syntax (macro)
isolated-cl.lisp (file)
(setf write-byte) (setf expander)
/builds/quickref/quickref/bin/declt
write-byte (macro)
isolated-cl.lisp (file)
(setf y-or-n-p) (setf expander)
/builds/quickref/quickref/bin/declt
y-or-n-p (macro)
isolated-cl.lisp (file)
(setf yes-or-no-p) (setf expander)
/builds/quickref/quickref/bin/declt
yes-or-no-p (macro)
Next: Exported conditions, Previous: Exported macros, Up: Exported definitions [Contents][Index]
isolated-cl.lisp (file)
isolated-cl.lisp (file)
isolated.lisp (file)
isolated-cl.lisp (file)
isolated.lisp (file)
isolated-impl.lisp (file)
isolated-cl.lisp (file)
Previous: Exported functions, Up: Exported definitions [Contents][Index]
isolated-impl.lisp (file)
isolated-error (condition)
disabled-feature-name (method)
:name
disabled-feature-name (generic function)
isolated-impl.lisp (file)
error (condition)
Previous: Exported definitions, Up: Definitions [Contents][Index]
• Internal special variables | ||
• Internal macros | ||
• Internal functions | ||
• Internal generic functions | ||
• Internal conditions |
Next: Internal macros, Previous: Internal definitions, Up: Internal definitions [Contents][Index]
isolated-impl.lisp (file)
isolated-impl.lisp (file)
isolated.lisp (file)
isolated.lisp (file)
Next: Internal functions, Previous: Internal special variables, Up: Internal definitions [Contents][Index]
isolated-cl.lisp (file)
isolated-cl.lisp (file)
isolated-cl.lisp (file)
isolated-cl.lisp (file)
isolated-cl.lisp (file)
Next: Internal generic functions, Previous: Internal macros, Up: Internal definitions [Contents][Index]
isolated.lisp (file)
isolated.lisp (file)
isolated.lisp (file)
Next: Internal conditions, Previous: Internal functions, Up: Internal definitions [Contents][Index]
isolated-impl.lisp (file)
isolated-impl.lisp (file)
Previous: Internal generic functions, Up: Internal definitions [Contents][Index]
isolated.lisp (file)
condition (condition)
isolated-impl.lisp (file)
isolated-error (condition)
isolated-impl.lisp (file)
isolated-error (condition)
isolated-impl.lisp (file)
isolated-error (condition)
unsupported-type (method)
:type
unsupported-type (generic function)
Previous: Definitions, Up: Top [Contents][Index]
• Concept index | ||
• Function index | ||
• Variable index | ||
• Data type index |
Next: Function index, Previous: Indexes, Up: Indexes [Contents][Index]
Jump to: | F I L |
---|
Jump to: | F I L |
---|
Next: Variable index, Previous: Concept index, Up: Indexes [Contents][Index]
Jump to: | (
A B C D E F G H I L M N O P R S T U W Y |
---|
Jump to: | (
A B C D E F G H I L M N O P R S T U W Y |
---|
Next: Data type index, Previous: Function index, Up: Indexes [Contents][Index]
Jump to: | *
N S T |
---|
Jump to: | *
N S T |
---|
Previous: Variable index, Up: Indexes [Contents][Index]
Jump to: | A C D I P S U |
---|
Jump to: | A C D I P S U |
---|