Chapter 13. Beyond Lists: Other Uses for Cons Cells of Practical Common Lisp states that objects referenced in common by the copy of the tree ((1 2) (3 4) (5 6))
returned by COPY-TREE
and the original tree itself are the numbers 5, 6, and the symbol NIL
.
I find it confusing because I suppose the numbers 1, 2, 3 and 4 are commonly referenced too. Since numbers are immutable.
Am I wrong in my assumption?
If so, then why aren't the numbers 1, 2, 3 and 4 commonly referenced?