parmesan
10/30/2017, 4:33 PMclass AnActivity: Activity {
val state: State
oncreate() {
ConductorController(savedInstanceState, { state }) /* <- will this introduce a memory leak? */
}
}
class ConductorController(bundle: Bundle?, () -> State) {/*...*/
}