Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cat3 (0.28 sec)

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

        }
      }
    
      public void testForArrayWithPosition() {
        String[] array = {"foo", "bar", "cat"};
        Iterator<String> iterator = Iterators.forArrayWithPosition(array, 1);
        assertTrue(iterator.hasNext());
        assertEquals("bar", iterator.next());
        assertTrue(iterator.hasNext());
        assertEquals("cat", iterator.next());
        assertFalse(iterator.hasNext());
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 18:43:01 GMT 2024
    - 56.5K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    * Allow having empty paths in *path operations* used with `include_router` and a `prefix`.
        * This allows having a router for `/cats` and all its *path operations*, while having one of them for `/cats`.
        * Now it doesn't have to be only `/cats/` (with a trailing slash).
        * To use it, declare the path in the *path operation* as the empty string (`""`).
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
Back to top