lispdoc - results for find |
(find item sequence &rest args &key from-end (start 0) end key test test-not) | Undocumented
|
Example:(defun has-spres-flag? (flag) (find flag *spres-flags*)) | Mentioned in: CLtL2 - 14.4. Searching Sequences for Items CLtL2 - 15.5. Using Lists as Sets CLtL2 - 15.6. Association Lists CLtL2 - 4.5. Type Specifiers That Specialize HyperSpec - Function FIND, FIND-IF, FIND-IF-NOT PCL - extracting information from an id3 tag PCL - sequence iterating functions PCL - sets Successful Lisp - chapter13 |
(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-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-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-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-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 |
(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 | |
(asdf:find-system system &optional error-p) | Undocumented
|
(rfc2388:find-header label headers) | Function: Find header by label from set of headers.
|
(asdf:find-component base path) | Function: Finds the component with PATH starting from BASE module; if BASE is nil, then the component is assumed to be a system.
|
(rfc2388:find-parameter name params) | Function: Find header parameter by name from set of parameters.
|
(find-all-symbols string-or-symbol) | Function: Return a list of all symbols in the system having the specified name.
|
| Mentioned in: CLtL2 - 11.7. Package System Functions and Variables HyperSpec - Function FIND-ALL-SYMBOLS | |
(ql-dist:find-dist name) | Undocumented
|
(ql-dist:find-system name) | Function: Return a system with the given NAME, or NIL if no system is found. If multiple systems have the same name, the one with the highest preference is returned.
|
(s-xml:find-namespace uri) | Function: Find a registered XML namespace identified by uri
|
(ql-dist:find-release name) | Function: Return a release with the given NAME, or NIL if no system is found. If multiple releases have the same name, the one with the highest preference is returned.
|
ql-release-index:find-system | Undocumented
|
ql-release-index:find-release | Undocumented
|
(ql-dist:find-system-in-dist system-name dist) | Function: Return a system with the given NAME in DIST, or NIL if no system is found.
|
(ql-dist:find-release-in-dist release-name dist) | Function: Return a release with the given NAME in DIST, or NIL if no release is found.
|
(ql-dist:find-asdf-system-file name) | Undocumented
|
(rfc2388:find-content-disposition-header headers) | Undocumented
|
ql-release-index:find-systems-named | Undocumented
|
ql-release-index:find-releases-named | Undocumented
|
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |