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