Hello everybody,
find works on transient vector but not on transient map while get works on
both transient vector and map .. ?
bitvector.core> (find {:a 1} :a)
[:a 1]
bitvector.core> (find (transient {:a 1}) :a)
nil
bitvector.core> (get (transient {:a 1}) :a)
1
bitvector.core> (get (transient [1 2 3]) 1)
2
bitvector.core>
Is this the intended behaviour or bug?
Thanks,
Sunil.
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en