Function init [src]
Prototype
pub fn init(s: []const u8) !Utf8View
Parameters
s: []const u8
Source
pub fn init(s: []const u8) !Utf8View {
if (!utf8ValidateSlice(s)) {
return error.InvalidUtf8;
}
return initUnchecked(s);
}