(Iterator<Entry<K, V>> entryIterator)
| 117 | } |
| 118 | |
| 119 | static <K, V> Iterator<V> valueIterator(Iterator<Entry<K, V>> entryIterator) { |
| 120 | return Iterators.transform(entryIterator, Maps.<V>valueFunction()); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Returns an immutable map instance containing the given entries. |
no test coverage detected