Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cves (0.17 sec)

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

        }
    
        @Override
        @CheckForNull
        public Range<C> get(@CheckForNull Object key) {
          if (key instanceof Cut) {
            try {
              @SuppressWarnings("unchecked") // we catch CCEs
              Cut<C> cut = (Cut<C>) key;
              if (!upperBoundWindow.contains(cut)) {
                return null;
              }
              Entry<Cut<C>, Range<C>> candidate = rangesByLowerBound.lowerEntry(cut);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 32.5K bytes
    - Viewed (0)
Back to top