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