ref: 20bb3cd7fba8281b0ce5ff3ca2641b00e2e8cc67
dir: /lib/std/striter.myr/
use "die" use "types" use "utf" pkg std = type chariter = struct rest : byte[:] ;; impl iterable chariter -> char const bychar : (str : byte[:] -> chariter) ;; impl iterable chariter -> char = __iternext__ = {ci, c if ci.rest.len == 0 -> false ;; (c#, ci.rest) = strstep(ci.rest) -> true } __iterfin__ = {ci, c } ;; const bychar = {str -> [.rest = str] }