Commit 6f5e7ee09c

Andrew Kelley <andrew@ziglang.org>
2018-12-01 08:14:17
make std.unicode.Utf8Iterator public
1 parent a9eab69
Changed files (1)
std/unicode.zig
@@ -208,7 +208,7 @@ pub const Utf8View = struct {
     }
 };
 
-const Utf8Iterator = struct {
+pub const Utf8Iterator = struct {
     bytes: []const u8,
     i: usize,