Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for qux (0.01 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

      }
    
      public void testGetFirst_withDefault_multiple() {
        Iterable<String> iterable = asList("foo", "bar");
        assertThat(Iterables.getFirst(iterable, "qux")).isEqualTo("foo");
      }
    
      public void testGetLast_list() {
        List<String> list = newArrayList("a", "b", "c");
        assertThat(Iterables.getLast(list)).isEqualTo("c");
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 47.5K bytes
    - Click Count (0)
  2. guava/src/com/google/common/base/Splitter.java

     *
     * <p>For example, this expression:
     *
     * {@snippet :
     * Splitter.on(',').split("foo,bar,qux")
     * }
     *
     * ... produces an {@code Iterable} containing {@code "foo"}, {@code "bar"} and {@code "qux"}, in
     * that order.
     *
     * <p>By default, {@code Splitter}'s behavior is simplistic and unassuming. The following
     * expression:
     *
     * {@snippet :
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 23.8K bytes
    - Click Count (0)
Back to Top