is there a weak-reference ReadWriteProperty built-...
# announcements
g
is there a weak-reference ReadWriteProperty built-in to kotlin?
k
What exactly do you want?
g
val cache: MyType by weakRef { getter() }
?
i suppose also theres no reason for the initializer to be lazy,
by weakRef(getter())
works too
l