CSR :
|
|
Relates :
|
|
Relates :
|
String::transform spec doesn't mention - what happens if function throws an exception? E.g. Function<String, String> function = str -> {throw new RuntimeException();}; "abc".transform(function); This code throws RunTimeException when executed. However String::transform spec has no mention that it can throw possible exception(s) thrown by function