If you have a `var` property that starts with `is`...
# announcements
g
If you have a
var
property that starts with
is
, then the generated setter omits the
is
at the beginning. E.g.:
var isX : Int = 0
creates a setter named
setX()
. Is this the only special case where part of the variable name will be omitted from the generated getter or setter method names? Edit: nvm, found the relevant code.