Function initComptime [src]

Prototype

pub inline fn initComptime(comptime s: []const u8) Utf8View

Parameters

s: []const u8

Source

pub inline fn initComptime(comptime s: []const u8) Utf8View { return comptime if (init(s)) |r| r else |err| switch (err) { error.InvalidUtf8 => { @compileError("invalid utf8"); }, }; }