sorted alphabetically

This commit is contained in:
Briheet Singh Yadav 2024-06-17 21:30:00 +05:30
parent 2325b0e75b
commit 8dd3467016
1 changed files with 3 additions and 3 deletions

View File

@ -958,6 +958,7 @@ var predeclaredTypes = map[string]bool{
var predeclaredFuncs = map[string]bool{
"append": true,
"cap": true,
"clear": true,
"close": true,
"complex": true,
"copy": true,
@ -965,15 +966,14 @@ var predeclaredFuncs = map[string]bool{
"imag": true,
"len": true,
"make": true,
"max": true,
"min": true,
"new": true,
"panic": true,
"print": true,
"println": true,
"real": true,
"recover": true,
"clear": true,
"min": true,
"max": true,
}
var predeclaredConstants = map[string]bool{