I was reading in Practical Clojure (Chapter 5) that the rseq function operation executes in constant time. It seems to me that it should be a linear time operation. Can anyone shed some light on this for me?
|
|
|||
|
|
|
Try this:
You'll see:
Now try this:
And the sequence implementation is different:
As Roman said, it is a changed interface to a sequence. All the elements are where they were you are just accessing them in a reverse order. You can see |
|||
|
|
|
I don't know how it's implemented, but I would think it just returns some object that implements sequence interface and knows how to traverse the structure (vector or sorted map) in reverse order. The result sequence is lazy, so it doesn't have to traverse the whole structure immediately. |
|||
|
|