What is a dotted pair's analogy in other Lisp implementations?

Posted by octopusgrabbus on Programmers See other posts from Programmers or by octopusgrabbus
Published on 2012-06-15T23:50:22Z Indexed on 2012/06/16 3:23 UTC
Read the original article Hit count: 236

Filed under:
|
|

What is Scheme's dotted pair construct analogous to in other Lisp implementations? I can make a vector or list quite easily, and understand those in Clojure, even though the syntax is a little different, like Clojure's vectors use square brackets [].

However, seeing a dotted pair for the first time threw me. It almost looks like it is an implementation of of map.

I'm not looking for a discussion, but more for use or the dotted pair equivalent in other Lisp dialects, like Clojure, or even Python.

Thanks.

© Programmers or respective owner

Related posts about lisp

Related posts about clojure