Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 1.19 KB

File metadata and controls

21 lines (14 loc) · 1.19 KB

subkt / myaa.subkt.tasks / org.gradle.api.Task / getList

getList

fun Task.getList(propertyName: String): Provider<List<String>> (source)

Searches for the given property in the Subs object's SubProperties instance, and evaluates its value using evaluate.

This function is run in a task context, using the entry and release values for this task.

// from task mux.03
// property file: TV.03.value=hello{1..3}|test|$episode
getList("value")
// Output: [hello1, hello2, hello3, test, 03]

Parameters

propertyName - The property to find.