Garden 🌻

__reflect.gdn::operators()

All the operators in Garden.

Source Code
public fun operators(): List<String> {
  // See lex_between in lex.rs for all lexemes that can be operators.
  ["==", "!=", ">=", "<=", "&&", "||", "+=", "-=", "**", "+.", "-.", "*.", "/.",
    "+", "-", "*", "/", "%", "^", "=", "<", ">",
  ]
}