fn isAllAlphanumeric(str: []const u8) bool
fn isAllAlphanumeric(str: []const u8) bool { for (str) |c| { if (!std.ascii.isAlphanumeric(c)) return false; } return true; }