cons

Name

cons -- Construct a new pair from two objects

Type: function

Synopsis

cons( a b, p);

Arguments

a

An instance of <object>

b

An instance of <object>

Return Values

p

An instance of <pair>

Description

This is the standard lisp constructor. a will be the car of the resulting pair, while b will be the cdr.