Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 867 Bytes

File metadata and controls

24 lines (16 loc) · 867 Bytes

subkt / myaa.subkt.tasks / ItemGroup / item

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
    }
}