(BiConsumer<? super K, ? super V> action)
| 939 | } |
| 940 | |
| 941 | @Override |
| 942 | public void forEach(BiConsumer<? super K, ? super V> action) { |
| 943 | checkNotNull(action); |
| 944 | // avoids allocation of entries |
| 945 | backingSet().forEach(k -> action.accept(k, function.apply(k))); |
| 946 | } |
| 947 | } |
| 948 | |
| 949 | static <K extends @Nullable Object, V extends @Nullable Object> |
nothing calls this directly
no test coverage detected