Returns first entry of bin for given hash.
(int hash)
| 2683 | |
| 2684 | /** Returns first entry of bin for given hash. */ |
| 2685 | ReferenceEntry<K, V> getFirst(int hash) { |
| 2686 | // read this volatile field only once |
| 2687 | AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table; |
| 2688 | return table.get(hash & (table.length() - 1)); |
| 2689 | } |
| 2690 | |
| 2691 | // Specialized implementations of map methods |
| 2692 |