AdvancedExpressionFolding
AdvancedExpressionFolding copied to clipboard
Support folding of JavaSlang/Vavr operations
In the same way as java.util collection classes are shown.
E.g.
Set set = HashSet.of("A");
set = set.add("B");
Would be shown
Set set = HashSet.of("A");
set += "B";