You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're running into a ClassCastException when using a tech.v3.dataset with Clerk, originally reported as nextjournal/clerk#677. Here's a small repro using techascent/tech.ml.dataset {:mvn/version "7.030"}:
(require '[tech.v3.dataset :as ds])
(defds
(ds/->dataset {:x (range5)
:y (repeatedly5 #(java.time.Instant/now))}))
(into [] (take3) (:x ds)) ;; works
(into [] (take3) (:y ds)) ;; throws ClassCastException: class clojure.lang.Reduced cannot be cast to class clojure.lang.ITransientCollection (clojure.lang.Reduced and clojure.lang.ITransientCollection are in unnamed module of loader 'app')
Is this expected behavior or a bug that could be fixed?
The text was updated successfully, but these errors were encountered:
We're running into a ClassCastException when using a tech.v3.dataset with Clerk, originally reported as nextjournal/clerk#677. Here's a small repro using
techascent/tech.ml.dataset {:mvn/version "7.030"}
:Is this expected behavior or a bug that could be fixed?
The text was updated successfully, but these errors were encountered: