I think I know what you want to achieve. You shoul...
# announcements
k
I think I know what you want to achieve. You should probably define one property as the "source of truth" and delegate the other.
Copy code
var abcLong: Long? = null

var abcString: String?
    get() = abcLong?.toString()
    set(value) {
        abcLong = value?.toLong()
    }