is it possible to make the setter of a delegate pr...
# announcements
j
is it possible to make the setter of a delegate private? i.e., a delegate whose behavior is similar to this:
Copy code
var foo: Int
        get() = something
        private set(value) { something = value }