Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for domElement (0.05 sec)

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

        } else {
          rangesByLowerBound.put(range.lowerBound, range);
        }
      }
    
      @LazyInit private transient @Nullable RangeSet<C> complement;
    
      @Override
      public RangeSet<C> complement() {
        RangeSet<C> result = complement;
        return (result == null) ? complement = new Complement() : result;
      }
    
      @VisibleForTesting
      static final class RangesByUpperBound<C extends Comparable<?>>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 32.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

        this(ranges, /* complement= */ null);
      }
    
      private ImmutableRangeSet(
          ImmutableList<Range<C>> ranges, @Nullable ImmutableRangeSet<C> complement) {
        this.ranges = ranges;
        this.complement = complement;
      }
    
      private final transient ImmutableList<Range<C>> ranges;
      private final transient @Nullable ImmutableRangeSet<C> complement;
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 27.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

       * element, in order to determine the element type. If the collection could be empty, use {@link
       * #complementOf(Collection, Class)} instead of this method.
       *
       * @param collection the collection whose complement should be stored in the enum set
       * @return a new, modifiable {@code EnumSet} containing all values of the enum that aren't present
       *     in the given collection
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
Back to top