LeoColman
03/05/2019, 8:42 PMfun foo<A>(a: A) {}
fun foo<A, B>(a: A, b: B){}
fun foo<A,B,C>(a: A, b: B, c: C) { }
...
until foo<125> types
tseisel
03/05/2019, 8:58 PMLeoColman
03/05/2019, 9:01 PMLeoColman
03/05/2019, 9:02 PMnatpryce
03/05/2019, 9:08 PMnatpryce
03/05/2019, 9:09 PMDerek Berner
03/05/2019, 9:15 PMNikky
03/05/2019, 9:40 PMbuilSrc
and call it in compileKotlin.doFirst
or a task that compileKotlin depends on
also make sure its added as a sourceSet
and optionally marked as generated sourceset in ideaNikky
03/05/2019, 9:41 PMkarelpeeters
03/05/2019, 10:26 PMDerek Berner
03/05/2019, 10:39 PM