Fixed
Details
Assignee
UnassignedUnassignedReporter
Alex MillerAlex MillerLabels
Approval
OkPatch
Code and TestPriority
MajorAffects versions
Fix versions
Details
Details
Assignee
Unassigned
UnassignedReporter
Alex Miller
Alex MillerLabels
Approval
Ok
Patch
Code and Test
Priority

Affects versions
Fix versions
Created February 19, 2014 at 3:48 PM
Updated October 30, 2020 at 8:30 PM
Resolved October 30, 2020 at 8:30 PM
VecSeq (as produced by
(seq (vector-of :long 1 2 3))
) does not implements equals, hashCode, or hasheq and does not play with any other Clojure collections or sequences appropriately in this regard.Approach: Implement Object.hashCode(), Object.equals(), and IHashEq.hasheq() in the primitive vector seq implementation. All of these leverage the prim vec seq itself rather than the underlying prim vec as it was quite a big simpler. The hasheq() impl calls Murmur3/hashOrdered, which takes an Iterable, so Iterable was also implemented using an iterator over the seq.
Some existing tests were expanded to include coverage of the primitive vec seq.
Patch: clj-1364-2.patch