This repository was archived by the owner on Aug 12, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -262,6 +262,12 @@ existing Form-2 components are detected and preserved.
262262
263263All previously tracked issues (I1–I6) have been resolved. See ` archive/bugs-fixed.md ` for details.
264264
265+ ### I7: ` into ` 3-arity (transducer) silently returns empty collection
266+
267+ ` (into [:div] (map f) coll) ` produces ` [:div] ` with no children. The 2-arity form
268+ ` (into [:div] (map f coll)) ` works correctly. Root cause: transducer protocol path
269+ in ` into ` not fully implemented. Workaround: use 2-arity ` into ` or ` (apply conj target (map f coll)) ` .
270+
265271## Workarounds (Platform Constraints)
266272
267273- ** defc names require hyphen** : Custom Element names require a hyphen (web standard). ` (defc counter ...) ` fails — use ` (defc sample-counter ...) ` .
You can’t perform that action at this time.
0 commit comments