nim-iterutils
nim-iterutils copied to clipboard
Functional operations for iterators and slices, similar to sequtils, in Nim
Results
1
nim-iterutils issues
Sort by
recently updated
recently updated
newest added
Concat works for other iterators like in your tests, but does not work with walkDir, I don't understand why: ```nim import os, iterutils # works for n in concat(toIter(1..4), toIter(20..23)):...