CLCS
Macro

nth-value

nth-value n formobject

Arguments and Values

na non-negative integer; evaluated.
forma form; evaluated as described below.
objectan object.

Description

Evaluates n and then form, returning as its only value the nth value yielded by form, or nil if n is greater than or equal to the number of values returned by form. (The first returned value is numbered 0.)

Examples

 (nth-value 0 (values 'a 'b)) ⇒  A
 (nth-value 1 (values 'a 'b)) ⇒  B
 (nth-value 2 (values 'a 'b)) ⇒  NIL
 (let* ((x 83927472397238947423879243432432432)
        (y 32423489732)
        (a (nth-value 1 (floor x y)))
        (b (mod x y)))
   (values a b (= a b)))
⇒  3332987528, 3332987528, true

Notes

Operationally, the following relationship is true, although nth-value might be more efficient in some implementations because, for example, some consing might be avoided.

 (nth-value n form) ≡ (nth n (multiple-value-list form))