Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for keyPair (0.03 sec)

  1. android/guava/src/com/google/common/collect/LinkedListMultimap.java

          if (keyList == null) {
            keyToKeyList.put(key, keyList = new KeyList<>(node));
            modCount++;
          } else {
            keyList.count++;
            Node<K, V> keyTail = keyList.tail;
            keyTail.nextSibling = node;
            node.previousSibling = keyTail;
            keyList.tail = node;
          }
        } else { // non-empty list, insert before nextSibling
          /*
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 26.6K bytes
    - Viewed (0)
Back to top