Context
Part of the Clojure core candidate implementation effort (Phase 2c). Natural companions to already-supported partition, partition-all, keep.
Functions to implement
| Function |
Description |
split-at |
Splits seq at index |
split-with |
Splits seq by predicate |
partition-by |
Partitions by change in function value |
dedupe |
Removes consecutive duplicates |
keep-indexed |
Keeps non-nil results with index |
Notes
- These extend the existing partitioning/filtering capabilities
- All are pure sequence transformations
🤖 Generated with Claude Code
Context
Part of the Clojure core candidate implementation effort (Phase 2c). Natural companions to already-supported
partition,partition-all,keep.Functions to implement
split-atsplit-withpartition-bydedupekeep-indexedNotes
🤖 Generated with Claude Code