subkt / myaa.subkt.tasks / ItemGroup / item
fun item(entry:
String
):
T
(source)
Get the item corresponding to the specified entry.
mux.item("vol1") // returns the mux.vol1 task
fun item(task:
Task
):
T
(source)
Get the item of the same the entry as the given task.
tasks(listOf("vol1")) { // configure tasks for vol1 only
mux {
merge.item(this) // returns merge.vol1
}
}