Unlike regular transient sets, data.int-map transient sets do not support the IFn interface

Description

=> ((transient (clojure.data.int-map/dense-int-set 1)) 1)
IllegalArgumentException Don't know how to create ISeq from: java.lang.Long clojure.lang.RT.seqFrom (RT.java:545)

=> ((transient #{1}) 1)
1

Environment

None

Activity

Show:

Alex Miller January 20, 2023 at 4:27 PM

Correct, the error here is in the example, but I will tweak the docstring to be more explicit about what its arg is.

Steve Miner March 1, 2019 at 2:22 PM

The original example looks like a typo. The argument to dense-int-set should be a collection, not a long so that explains the exception. Maybe the doc string could be more explicit.

`((transient (clojure.data.int-map/dense-int-set [1])) 1)` works for me.

Mark Engelberg July 6, 2016 at 7:12 PM

In theory, contains? is also supposed to work for transient sets: http://dev.clojure.org/jira/browse/CLJ-700
So while you are adding interfaces to data.int-map transient sets, you may want to add that one as well so that the behavior will match once https://clojure.atlassian.net/browse/CLJ-700#icft=CLJ-700 is added.

Zach Tellman July 6, 2016 at 6:58 PM

This should be easy enough to fix, thanks.

Declined

Details

Assignee

Reporter

Priority

Created July 1, 2016 at 9:22 AM
Updated January 20, 2023 at 4:28 PM
Resolved January 20, 2023 at 4:28 PM

Flag notifications