caddr

Hello, you have come here looking for the meaning of the word caddr. In DICTIOUS you will not only get to know all the dictionary meanings for the word caddr, but we will also tell you about its etymology, its characteristics and you will know how to say caddr in singular and plural. Everything you need to know about the word caddr you have here. The definition of the word caddr will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofcaddr, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

English

Etymology

Contraction of car of the cdr of the cdr.

Pronunciation

  • IPA(key): /ˈkɑːdədə/, /ˈkɑdədɚ/

Noun

caddr (plural caddrs)

  1. (programming) Car of the cdr of the cdr in Lisp. The third element in a list.
    • 1991, Peter M. Kogge, The Architecture of Symbolic Computers, page 156:
      Following the SEL in the control list are two elements (the cadr and caddr of the C list), both of which are themselves lists of instructions.
    • 1994, Evan Tick, Giancarlo Succi, Implementations of Logic Programming Systems, →ISBN, page 239:
      For example, in a procedure that manipulates a list data stream, we might know that the mode of the car of the list (that is the current message) is the same mode as the cadr (second message), caddr (third message), etc.
    • 2000, Matt Kaufmann, Panagiotis Manolios, J Strother Moore, Computer-aided reasoning: an approach:
      If we let x denote the tree (1 2 3), then the car of x is 1, the cdr of x is (2 3), the cadr of x is 2, the caddr of x is 3, and the cdddr of x is nil.
    • 2004, Scott, Programming Principles Of Mulltimedia Systems, →ISBN, page 608:
      In effect, lazy evaluation would force things to happen in the proper order: The car of output is the first prompt. The cadr of output is the first square, a value that requires evaluation of the car of input. The caddr of output is the second prompt.