Is it possible to delegate a property to another p...
# announcements
p
Is it possible to delegate a property to another property in other way than this?
Copy code
var someAttribute: AttributeClass
        get() = delegate.someAttribute
        set(value) {
            delegate.someAttribute = value
        }