pub fn isUnderscore(bytes: []const u8) bool
pub fn isUnderscore(bytes: []const u8) bool { return bytes.len == 1 and bytes[0] == '_'; }