Question: Suppose I have this: ```val myProperty: ...
# plugin-development
k
Question: Suppose I have this:
Copy code
val 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?
v
I'd say TIAS, then you know. 🙂 But I think so, as long as you do not query
myTasks
.