ref: c3e6c525d4716fdaa8839119f4d487f76401f272
dir: /lib/bio/iter.myr/
use std use "bio.use" pkg bio = type lineiter = file# impl iterable lineiter -> byte[:] const lineiter : (f : file# -> lineiter) ;; const lineiter = {f -> f castto(lineiter) } impl iterable lineiter -> byte[:] = __iternext__ = {itp, outp match bio.readln(itp# castto(file#)) | `Ok ln: outp# = ln -> true | `Eof: -> false | `Err _: -> false ;; } __iterfin__ = {itp, outp std.slfree(outp#) } ;;