Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for standardSubSet (0.38 sec)

  1. guava/src/com/google/common/collect/ForwardingNavigableSet.java

       * {@code headSet} and {@code tailSet} methods. In many cases, you may wish to override {@link
       * #subSet(Object, boolean, Object, boolean)} to forward to this implementation.
       */
      protected NavigableSet<E> standardSubSet(
          @ParametricNullness E fromElement,
          boolean fromInclusive,
          @ParametricNullness E toElement,
          boolean toInclusive) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingNavigableSet.java

       * {@code headSet} and {@code tailSet} methods. In many cases, you may wish to override {@link
       * #subSet(Object, boolean, Object, boolean)} to forward to this implementation.
       */
      protected NavigableSet<E> standardSubSet(
          @ParametricNullness E fromElement,
          boolean fromInclusive,
          @ParametricNullness E toElement,
          boolean toInclusive) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

        }
    
        @Override
        public SortedSet<E> subSet(@ParametricNullness E fromElement, @ParametricNullness E toElement) {
          return standardSubSet(fromElement, toElement);
        }
    
        @Override
        public NavigableSet<E> headSet(@ParametricNullness E toElement, boolean inclusive) {
          return forward.tailSet(toElement, inclusive).descendingSet();
    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