Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addRightChild (0.04 sec)

  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;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.8K bytes
    - Viewed (0)
Back to top