ref: 009cb9bf1139d5ddda4e464734f53eeb4ec10d74
dir: /lib/std/readall.myr/
use "errno" use "result" use "option" use "syswrap" use "types" pkg std = const readall : (fd : fd, dst : byte[:] -> result(size, errno)) ;; const readall = {fd, dst var sz sz = dst.len while dst.len != 0 match std.read(fd, dst) | `Ok 0: break | `Ok n: dst = dst[n:] | `Fail e: -> `Fail e ;; ;; -> `Ok sz - dst.len }