(final K key)
| 911 | static <K, V> Iterator<Entry<K, V>> asMapEntryIterator(Set<K> set, final Function<? super K, V> function) { |
| 912 | return new TransformedIterator<K, Entry<K, V>>(set.iterator()) { |
| 913 | @Override |
| 914 | Entry<K, V> transform(final K key) { |
| 915 | return immutableEntry(key, function.apply(key)); |
| 916 | } |
| 917 | }; |
| 918 | } |
| 919 |
nothing calls this directly
no test coverage detected