wst
val t: List<(Double) -> Double> // not empty fun transform(d: Double): Double { var temp = d t.forEach { temp = it(temp) } return temp }
agomez
fold