- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ceilingEntry (0.05 sec)
-
android/guava/src/com/google/common/collect/TreeRangeSet.java
} } @Override public boolean intersects(Range<C> range) { checkNotNull(range); Entry<Cut<C>, Range<C>> ceilingEntry = rangesByLowerBound.ceilingEntry(range.lowerBound); if (ceilingEntry != null && ceilingEntry.getValue().isConnected(range) && !ceilingEntry.getValue().intersection(range).isEmpty()) { return true; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 32.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
return sortedMap().floorKey(key); } @Override public @Nullable Entry<K, Collection<V>> ceilingEntry(@ParametricNullness K key) { Entry<K, Collection<V>> entry = sortedMap().ceilingEntry(key); return (entry == null) ? null : wrapEntry(entry); } @Override public @Nullable K ceilingKey(@ParametricNullness K key) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 12 15:51:57 UTC 2025 - 48.2K bytes - Viewed (0)