s there a reason why I can’t use named arguments o...
# getting-started
r
s there a reason why I can’t use named arguments on functions? I’m calling a Java method
void scan(int initialValue, BiFunction accumulator)
I can’t call this method from kotlin as
stream.scan(initialValue = 0, BiFunction = {})