Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,030 for headSet (0.2 sec)

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

      }
    
      @Override
      public NavigableSet<E> headSet(@ParametricNullness E toElement, boolean inclusive) {
        return delegate().headSet(toElement, inclusive);
      }
    
      /**
       * A sensible definition of {@link #headSet(Object)} in terms of the {@link #headSet(Object,
       * boolean)} method. If you override {@link #headSet(Object, boolean)}, you may wish to override
       * {@link #headSet(Object)} to forward to this implementation.
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 15:26:39 GMT 2023
    - 9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        assertSame(Ordering.natural(), set.comparator());
      }
    
      public void testSingle_headSet() {
        SortedSet<String> set = of("e");
        assertTrue(set.headSet("g") instanceof ImmutableSortedSet);
        assertThat(set.headSet("g")).contains("e");
        assertSame(this.<String>of(), set.headSet("c"));
        assertSame(this.<String>of(), set.headSet("e"));
      }
    
      public void testSingle_tailSet() {
        SortedSet<String> set = of("e");
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 46.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/SynchronizedNavigableSetTest.java

        NavigableSet<String> set = create();
        SortedSet<String> headSet = set.headSet("a");
        assertTrue(headSet instanceof SynchronizedSortedSet);
        assertSame(set, ((SynchronizedSortedSet<String>) headSet).mutex);
      }
    
      public void testHeadSet_E_B() {
        NavigableSet<String> set = create();
        NavigableSet<String> headSet = set.headSet("a", true);
        assertTrue(headSet instanceof SynchronizedNavigableSet);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/SynchronizedNavigableSetTest.java

        NavigableSet<String> map = create();
        SortedSet<String> headSet = map.headSet("a");
        assertTrue(headSet instanceof SynchronizedSortedSet);
        assertSame(MUTEX, ((SynchronizedSortedSet<String>) headSet).mutex);
      }
    
      public void testHeadSet_E_B() {
        NavigableSet<String> map = create();
        NavigableSet<String> headSet = map.headSet("a", true);
        assertTrue(headSet instanceof SynchronizedNavigableSet);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertThat(set.headSet(1)).isEmpty();
        assertThat(set.headSet(2)).containsExactly(1).inOrder();
        assertThat(set.headSet(3)).containsExactly(1, 2).inOrder();
        assertThat(set.headSet(4)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.headSet(Integer.MAX_VALUE)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.headSet(1, true)).containsExactly(1).inOrder();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 19.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertThat(set.headSet(1)).isEmpty();
        assertThat(set.headSet(2)).containsExactly(1).inOrder();
        assertThat(set.headSet(3)).containsExactly(1, 2).inOrder();
        assertThat(set.headSet(4)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.headSet(Integer.MAX_VALUE)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.headSet(1, true)).containsExactly(1).inOrder();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 19.1K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

      public @Nullable E floor(E e) {
        return delegate.floor(checkValid(e));
      }
    
      @Override
      public SortedSet<E> headSet(E toElement) {
        return headSet(toElement, false);
      }
    
      @Override
      public NavigableSet<E> headSet(E toElement, boolean inclusive) {
        return new SafeTreeSet<>(delegate.headSet(checkValid(toElement), inclusive));
      }
    
      @Override
      public @Nullable E higher(E e) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ForwardingSortedSet.java

        return delegate().comparator();
      }
    
      @Override
      @ParametricNullness
      public E first() {
        return delegate().first();
      }
    
      @Override
      public SortedSet<E> headSet(@ParametricNullness E toElement) {
        return delegate().headSet(toElement);
      }
    
      @Override
      @ParametricNullness
      public E last() {
        return delegate().last();
      }
    
      @Override
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri May 12 15:26:39 GMT 2023
    - 5.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ForwardingNavigableSet.java

      }
    
      @Override
      public NavigableSet<E> headSet(@ParametricNullness E toElement, boolean inclusive) {
        return delegate().headSet(toElement, inclusive);
      }
    
      /**
       * A sensible definition of {@link #headSet(Object)} in terms of the {@link #headSet(Object,
       * boolean)} method. If you override {@link #headSet(Object, boolean)}, you may wish to override
       * {@link #headSet(Object)} to forward to this implementation.
       */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri May 12 15:26:39 GMT 2023
    - 9K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

      public @Nullable E floor(E e) {
        return delegate.floor(checkValid(e));
      }
    
      @Override
      public SortedSet<E> headSet(E toElement) {
        return headSet(toElement, false);
      }
    
      @Override
      public NavigableSet<E> headSet(E toElement, boolean inclusive) {
        return new SafeTreeSet<>(delegate.headSet(checkValid(toElement), inclusive));
      }
    
      @Override
      public @Nullable E higher(E e) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 5.8K bytes
    - Viewed (0)
Back to top