Created
June 10, 2020 16:31
-
-
Save Danilo-Araujo-Silva/95040cd8bc63af841187a9c261527354 to your computer and use it in GitHub Desktop.
All Kotlin Keyworkds and Symbols in a MutableMap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val kotlinKeywordsAndSymbols = | |
mutableListOf( | |
"as", | |
"as?", | |
"break", | |
"class", | |
"continue", | |
"do", | |
"else", | |
"false", | |
"for", | |
"fun", | |
"if", | |
"in", | |
"!in", | |
"interface", | |
"is", | |
"!is", | |
"null", | |
"object", | |
"package", | |
"return", | |
"super", | |
"this", | |
"throw", | |
"true", | |
"try", | |
"typealias", | |
"typeof", | |
"val", | |
"var", | |
"when", | |
"while", | |
"by", | |
"catch", | |
"constructor", | |
"delegate", | |
"dynamic", | |
"field", | |
"file", | |
"finally", | |
"get", | |
"import", | |
"init", | |
"param", | |
"property", | |
"receiver", | |
"set", | |
"setparam", | |
"where", | |
"actual", | |
"abstract", | |
"annotation", | |
"companion", | |
"const", | |
"crossinline", | |
"data", | |
"enum", | |
"expect", | |
"external", | |
"final", | |
"infix", | |
"inline", | |
"inner", | |
"internal", | |
"lateinit", | |
"noiline", | |
"open", | |
"operator", | |
"out", | |
"override", | |
"private", | |
"protected", | |
"public", | |
"reified", | |
"sealed", | |
"suspend", | |
"tailrec", | |
"vararg", | |
"field", | |
"it", | |
"+", | |
"-", | |
"*", | |
"/", | |
"%", | |
"=", | |
"+=", | |
"-=", | |
"*=", | |
"/=", | |
"%=", | |
"++", | |
"--", | |
"&&", | |
"||", | |
"!", | |
"==", | |
"!=", | |
"===", | |
"!==", | |
"<", | |
">", | |
"<=", | |
">=", | |
"[", | |
"]", | |
"!!", | |
"?.", | |
"?:", | |
"::", | |
"..", | |
":", | |
"?", | |
"->", | |
"@", | |
";", | |
"$", | |
"_" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment