schveiguy / iopipe

D language library for modular io
Boost Software License 1.0
77 stars 6 forks source link

Add new mechanism to iterate by elements #25

Closed schveiguy closed 5 years ago

schveiguy commented 5 years ago

@bioinfornatics you should be able to do with this:

File(args[1]).refCounted.bufd
   .assumeText
   .asElemRange
   .filter!(...)
   ...