java
2023-05-21
2023-05-21
雄辩是银,沉默是金。——佚名
例如原来的:
1 | Steam.of(Maps.of("foo", "bar")) |
现在
1 | Steam.of(Maps.of("foo", "bar")) |
可以给key
和value
取不同的变量名,源码是
1 | static <K, V, R> Function<Map.Entry<K, V>, R> entryFunc(BiFunction<K, V, R> biFunc) { |
还有其他的类型
1 | val list = Lists.of(); |
源码
1 | static <K, V> Consumer<Map.Entry<K, V>> entryCons(BiConsumer<K, V> biCons) { |
以及
1 | val first = |
源码
1 | static <K, V> Predicate<Map.Entry<K, V>> entryPred(BiPredicate<K, V> biPred) { |