lispdoc - results for find-class |
(find-class symbol &optional (errorp t) environment) | Undocumented
|
Example:(defun url-class-for-scheme (scheme) (aif (cadr (assoc scheme *url-schemes* :test #'string-equal)) (find-class it) nil)) | Mentioned in: CLtL2 - 28.1.2. Classes CLtL2 - 28.2. Functions in the Programmer Interface HyperSpec - Accessor FIND-CLASS PCL - good object oriented design Successful Lisp - chapter07 Successful Lisp - chapter14 |
(find-if predicate sequence &rest args &key from-end (start 0) end key) | Undocumented
|
Example:(defun next-instr (code) (find-if (complement #'label-p) code)) | Mentioned in: CLtL2 - 14.4. Searching Sequences for Items HyperSpec - Function FIND, FIND-IF, FIND-IF-NOT On Lisp - Birth of a Utility On Lisp - Chapter _28 On Lisp - Composing Functions PCL - sets Successful Lisp - chapter13 |
(find-method generic-function qualifiers specializers &optional errorp) | Undocumented
|
| Mentioned in: CLtL2 - 28.1.6.2. Introduction to Methods CLtL2 - 28.2. Functions in the Programmer Interface CLtL2 - 4.4. Type Specifiers That Combine HyperSpec - Standard Generic Function FIND-METHOD PCL - good object oriented design | |
(find-if-not predicate sequence &rest args &key from-end (start 0) end key) | Undocumented
|
| Mentioned in: HyperSpec - Function FIND, FIND-IF, FIND-IF-NOT PCL - sets Successful Lisp - chapter13 | |
(find-symbol name &optional (package (sane-package))) | Function: Return the symbol named STRING in PACKAGE. If such a symbol is found then the second value is :INTERNAL, :EXTERNAL or :INHERITED to indicate how the symbol is accessible. If no symbol is found then both values are NIL.
|
Example:(defun get-late-bind-sym (package name) "Tries to find a sym that may not exist at read, compile or load time, ie totally dynamic." (when-bind (pack (find-package package)) (find-symbol (symbol-name name) pack))) | Mentioned in: CLtL2 - 11.2. Package Names CLtL2 - 11.7. Package System Functions and Variables HyperSpec - Function FIND-SYMBOL PCL - a bit of package and symbol vocabulary PCL - how the reader uses packages |
(find-package package-designator) | Undocumented
|
Example:(defun get-late-bind-sym (package name) "Tries to find a sym that may not exist at read, compile or load time, ie totally dynamic." (when-bind (pack (find-package package)) (find-symbol (symbol-name name) pack))) | Mentioned in: CLtL2 - 11.2. Package Names CLtL2 - 11.7. Package System Functions and Variables CLtL2 - 25.1.4. Similarity of Constants CLtL2 - 26.6. Iteration Control HyperSpec - Function FIND-PACKAGE PCL - how the reader uses packages PCL - looping over collections and packages |
(find-restart identifier &optional condition) | Function: Return the first restart identified by IDENTIFIER. If IDENTIFIER is a symbol, then the innermost applicable restart with that name is returned. If IDENTIFIER is a restart, it is returned if it is currently active. Otherwise NIL is returned. If CONDITION is specified and not NIL, then only restarts associated with that condition (or with no condition) will be returned.
|
Example:(defun show-error (error) (error-popup (format nil "~A~@[~%~%~A?~]" error (find-restart 'continue)) "Error" "error")) | Mentioned in: CLtL2 - 29.3.9. Comparison of Restarts and Catch/Throw CLtL2 - 29.4.7. Establishing Restarts CLtL2 - 29.4.8. Finding and Manipulating Restarts HyperSpec - Function FIND-RESTART PCL - restarts |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |