grandstaish
01/24/2017, 11:32 AMvar
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.