lispdoc - results for second |
(second list) | Function: Return the 2nd object in a list or NIL if there is no 2nd object.
|
Example:(defun export-match (export) (second export)) | Mentioned in: CLtL2 - 15.2. Lists HyperSpec - Accessor FIRST, SECOND, THIRD, FOURTH, FIFTH, SIXTH, SEVENTH, EIGHTH, NINTH, TENTH On Lisp - Macros from Functions PCL - list manipulation functions |
seconds | |
| Mentioned in: HyperSpec - 25.1.4.4 Seconds | |
internal-time-units-per-second | Variable: The number of internal time units that fit into a second. See GET-INTERNAL-REAL-TIME and GET-INTERNAL-RUN-TIME.
|
Example:(defun time-string (time) "Return a string representing this internal time in min:secs." (multiple-value-bind (min sec) (floor (round time internal-time-units-per-second) 60) (format nil "~2d:~2,'0d" min sec))) | Mentioned in: CLtL2 - 25.4.1. Time Functions HyperSpec - Constant Variable INTERNAL-TIME-UNITS-PER-SECOND PCL - make it work make it right make it fast |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |