We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ceeb22 commit dfc5887Copy full SHA for dfc5887
1 file changed
demo/src/main/java/fj/demo/Option_filter.java
@@ -23,8 +23,8 @@ public static void main(final String[] args) {
23
final Option<Integer> o8 = o5.filter(f);
24
final Option<Integer> o9 = o6.filter(i -> i % 2 == 0);
25
26
- optionShow(intShow).println(o4); // None
27
- optionShow(intShow).println(o5); // None
28
- optionShow(intShow).println(o6); // Some(4)
+ optionShow(intShow).println(o7); // None
+ optionShow(intShow).println(o8); // None
+ optionShow(intShow).println(o9); // Some(4)
29
}
30
0 commit comments