Cadr
(cadr list) -> value
- list -- May be either a list or a pair. Regardless, cadr will treat it as a pair.
This is a combination of cdr and car--in that order. First, it performs cdr on the list, and then performs car on the cdr. So:
Example:
See Also: car, cdr