Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for anderen (0.17 sec)

  1. guava-tests/test/com/google/common/base/ConverterTest.java

            };
    
        Converter<StringWrapper, Long> converter = first.andThen(STR_TO_LONG);
    
        assertEquals(LONG_VAL, converter.convert(new StringWrapper(STR_VAL)));
        assertEquals(STR_VAL, converter.reverse().convert(LONG_VAL).value);
    
        assertEquals("StringWrapper.andThen(string2long)", converter.toString());
    
        assertEquals(first.andThen(STR_TO_LONG), first.andThen(STR_TO_LONG));
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Oct 06 17:02:33 GMT 2023
    - 7.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Converter.java

       * <p>The returned converter is serializable if {@code this} converter and {@code secondConverter}
       * are.
       */
      public final <C> Converter<A, C> andThen(Converter<B, C> secondConverter) {
        return doAndThen(secondConverter);
      }
    
      /** Package-private non-final implementation of andThen() so only we can override it. */
      <C> Converter<A, C> doAndThen(Converter<B, C> secondConverter) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 23K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Functions.java

       * is defined as the function h such that {@code h(a) == g(f(a))} for each {@code a}.
       *
       * <p><b>Java 8+ users:</b> use {@code g.compose(f)} or (probably clearer) {@code f.andThen(g)}
       * instead.
       *
       * @param g the second function to apply
       * @param f the first function to apply
       * @return the composition of {@code f} and {@code g}
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Functions.java

       * is defined as the function h such that {@code h(a) == g(f(a))} for each {@code a}.
       *
       * <p><b>Java 8+ users:</b> use {@code g.compose(f)} or (probably clearer) {@code f.andThen(g)}
       * instead.
       *
       * @param g the second function to apply
       * @param f the first function to apply
       * @return the composition of {@code f} and {@code g}
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/ConverterTest.java

            };
    
        Converter<StringWrapper, Long> converter = first.andThen(STR_TO_LONG);
    
        assertEquals(LONG_VAL, converter.convert(new StringWrapper(STR_VAL)));
        assertEquals(STR_VAL, converter.reverse().convert(LONG_VAL).value);
    
        assertEquals("StringWrapper.andThen(string2long)", converter.toString());
    
        assertEquals(first.andThen(STR_TO_LONG), first.andThen(STR_TO_LONG));
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 06 17:02:33 GMT 2023
    - 7.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Converter.java

       * <p>The returned converter is serializable if {@code this} converter and {@code secondConverter}
       * are.
       */
      public final <C> Converter<A, C> andThen(Converter<B, C> secondConverter) {
        return doAndThen(secondConverter);
      }
    
      /** Package-private non-final implementation of andThen() so only we can override it. */
      <C> Converter<A, C> doAndThen(Converter<B, C> secondConverter) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 23K bytes
    - Viewed (1)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    They all made a rush at Alice the moment she appeared; but she
    ran off as hard as she could, and soon found herself safe in a
    thick wood.
    
      `The first thing I've got to do,' said Alice to herself, as she
    wandered about in the wood, `is to grow to my right size again;
    and the second thing is to find my way into that lovely garden.
    I think that will be the best plan.'
    
      It sounded an excellent plan, no doubt, and very neatly and
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
Back to top