Given `class MyClass(val first: String, val second...
# reflect
b
Given
class 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>
?
u