Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for swapValue (0.14 seconds)

  1. src/main/java/org/codelibs/core/collection/ArrayMap.java

                    if (e.hashCode == hashCode && key.equals(e.key)) {
                        return swapValue(e, value);
                    }
                }
            } else {
                for (Entry<K, V> e = mapTable[0]; e != null; e = e.next) {
                    if (e.key == null) {
                        return swapValue(e, value);
                    }
                }
            }
            ensureCapacity();
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Nov 22 11:21:59 GMT 2025
    - 20.1K bytes
    - Click Count (0)
Back to Top