ref: c694d9a9c3f8c78837cf3bcbbe11fb19d04c204d
dir: /lib/std/diriter.myr/
use "alloc.use"
use "dir.use"
use "option.use"
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#)
}
;;