I wonder if there is a nice way to do something li...
# announcements
a
I wonder if there is a nice way to do something like this:
Copy code
class DbRef1N : MutableList by list {
    private val list = lazy { NotYetImplementedDelegates.observableList(fetchSql()) {
        item, action -> takeNoteOf(item,action)
    } }
}