From 6f5e7ee09c9269cfcc454cde88960987054ee031 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sat, 1 Dec 2018 02:14:17 -0500 Subject: [PATCH] make std.unicode.Utf8Iterator public --- std/unicode.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/unicode.zig b/std/unicode.zig index 559a2e739a..fcb748401f 100644 --- a/std/unicode.zig +++ b/std/unicode.zig @@ -208,7 +208,7 @@ pub const Utf8View = struct { } }; -const Utf8Iterator = struct { +pub const Utf8Iterator = struct { bytes: []const u8, i: usize,