Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for doAndThen (0.05 seconds)

  1. android/guava/src/com/google/common/base/Converter.java

       * 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) {
        return new ConverterComposition<>(this, checkNotNull(secondConverter));
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Jun 18 21:43:06 GMT 2025
    - 22.8K bytes
    - Click Count (0)
Back to Top