Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testIntersections (0.06 sec)

  1. android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertEquals(
            ImmutableSet.of(),
            ContiguousSet.create(Range.closed(-5, -1), integers())
                .intersection(ContiguousSet.create(Range.open(3, 64), integers())));
      }
    
      public void testIntersection() {
        ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
        assertEquals(
            ImmutableSet.of(1, 2, 3),
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertEquals(
            ImmutableSet.of(),
            ContiguousSet.create(Range.closed(-5, -1), integers())
                .intersection(ContiguousSet.create(Range.open(3, 64), integers())));
      }
    
      public void testIntersection() {
        ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
        assertEquals(
            ImmutableSet.of(1, 2, 3),
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.6K bytes
    - Viewed (0)
Back to top