replaceVariables

Replace all $ substrings in str with corresponding mapping values


@JvmName(name = "replaceVariablesString")
fun Iterable<String>.replaceVariables(mapping: Map<String, String>): List<String>
@JvmName(name = "replaceVariables")
fun <T : VariablesSubstitutionAware<T>> Iterable<T>.replaceVariables(mapping: Map<String, String>): List<T>
@JvmName(name = "replaceVariablesExecution")
fun Iterable<CodeExecution>.replaceVariables(mapping: Map<String, String>): List<ExecutionCallback<Any?>>