Kelvin Chung
07/30/2024, 6:09 PMval myProperty: Property<String>
val myTasks = tasks.named { it == myProperty.get() }
Is myTasks a "lazy view" in the sense that the evaluation of myProperty.get() is deferred? Or will this error right away if myProperty is not already set?Vampire
07/30/2024, 8:56 PMmyTasks.