lispdoc - results for with-timeout |
(bordeaux-threads:with-timeout (timeout) &body body) | Function: Execute `BODY' and signal a condition of type TIMEOUT if the execution of BODY does not complete within `TIMEOUT' seconds. On implementations which do not support WITH-TIMEOUT natively and don't support threads either it has no effect.
|
(with-slots slots instance &body body) | Undocumented
|
Example:(defun untrained-p (feature) (with-slots (spam-count ham-count) feature (and (zerop spam-count) (zerop ham-count)))) | Mentioned in: CLtL2 - 28.1.2.4. Accessing Slots CLtL2 - 28.2. Functions in the Programmer Interface CLtL2 - 29.4.5. Defining Conditions CLtL2 - 9.1. Declaration Syntax HyperSpec - Macro WITH-SLOTS PCL - good object oriented design PCL - keeping track of inherited slots PCL - manipulating the lexical environment PCL - other special operators PCL - the current object stack PCL - with slots and with accessors |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |