Details
Assignee
UnassignedUnassignedReporter
importimportApproval
TriagedPriority
MinorAffects versions
Details
Details
Assignee
Unassigned
UnassignedReporter
import
importApproval
Triaged
Priority
Affects versions
Created June 9, 2015 at 8:16 PM
Updated July 18, 2018 at 12:26 AM
To safely test if an arbitrary seq is realized (non-lazy), we need a wrapper like:
(defn seq-realized? [s] (if (instance? clojure.lang.IPending s) (realized? s) true))
If
realized?
returned true for an (ISeq
?) instance that is notIPending
there would be less surprising behavior for cases such as,(realized? (range 10))
which throws exception.NB: A follow-up to CLJ-1751.