So... in Java we can call our getters and setters using the double colon operator, like this:
myMethod(MyClass::getSomeVar, MyClass::setSomeVar);
In Kotlin we can do the same for the getter:
myFunction(MyClass::someVar, MyClass::?)
How would we do this for the setter in Kotlin?