(Consumer<? super K> action)
| 3894 | } |
| 3895 | |
| 3896 | @Override |
| 3897 | public void forEach(Consumer<? super K> action) { |
| 3898 | checkNotNull(action); |
| 3899 | // avoids entry allocation for those maps that allocate entries on iteration |
| 3900 | map.forEach((k, v) -> action.accept(k)); |
| 3901 | } |
| 3902 | |
| 3903 | @Override |
| 3904 | public int size() { |
nothing calls this directly
no test coverage detected