bdawg.io
04/02/2018, 8:27 PMclass MyClass(val first: String, val second: Int, val third: Boolean = false)
, is there a way to reference the variant of the constructor that would provide (String, Int) -> MyClass
as KFunction2<String, Int, MyClass>
?udalov