lispdoc - results for ignore |
ignore | Undocumented
|
Example:(defun getenv (&rest args) (declare (ignore args)) nil) | Mentioned in: CLtL2 - 25.1.1. Compiler Diagnostics CLtL2 - 28.2. Functions in the Programmer Interface CLtL2 - 8.5. Environments CLtL2 - 9.2. Declaration Specifiers CLtL2 - A.4. Primitives HyperSpec - Declaration IGNORE, IGNORABLE On Lisp - Classes and Instances |
(ignore-errors &rest forms) | Function: Execute FORMS handling ERROR conditions, returning the result of the last form, or (VALUES NIL the-ERROR-that-was-caught) if an ERROR was handled.
|
Example:(defun base64->obj (string) (ignore-errors (with-safe-io-syntax (read-from-string (base64-decode string))))) | Mentioned in: CLtL2 - 12.5.3. Branch Cuts, Principal Values, and Boundary Conditions in the Complex Plane CLtL2 - 29.3.12. Serious Conditions CLtL2 - 29.3.15. Signaling Conditions CLtL2 - 29.3.2. Trapping Errors CLtL2 - 29.3.9. Comparison of Restarts and Catch/Throw CLtL2 - 29.4.4. Handling Conditions HyperSpec - Macro IGNORE-ERRORS PCL - testing a files existence Successful Lisp - assert |
s-xml:*ignore-namespaces* | Variable: When t, namespaces are ignored like in the old version of S-XML
|
(alexandria.0.dev:ignore-some-conditions (&rest conditions) &body body) | Function: Similar to CL:IGNORE-ERRORS but the (unevaluated) CONDITIONS list determines which specific conditions are to be ignored.
|
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |