mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
Itarator has `next` function, iterates over tar files. When using from
outside of module with `tar.` prefix makes more sense.
var iter = tar.iterator(reader, null);
while (try iter.next()) |file| {
...
}