ref: 41f58088d668a208e560de1eecdc7c69582862ca
dir: /lib/std/diriter.myr/
use "alloc"
use "dir"
use "option"
pkg std =
type diriter = dir#
impl iterable diriter -> byte[:]
const byentry : (d : dir# -> diriter)
;;
const byentry = {d
-> d castto(diriter)
}
impl iterable diriter -> byte[:] =
__iternext__ = {itp, valp
match dirread(itp# castto(dir#))
| `Some ent:
valp# = ent
-> true
| `None:
-> false
;;
}
__iterfin__ = {itp, valp
std.slfree(valp#)
}
;;