Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for addRightChild (0.16 seconds)

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

          } else if (cmp > 0) {
            return (right == null) ? 0 : right.count(comparator, e);
          } else {
            return elemCount;
          }
        }
    
        @CanIgnoreReturnValue
        private AvlNode<E> addRightChild(@ParametricNullness E e, int count) {
          right = new AvlNode<>(e, count);
          successor(this, right, succ());
          height = max(2, height);
          distinctElements++;
          totalCount += count;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 13:11:08 GMT 2026
    - 34K bytes
    - Click Count (0)
Back to Top