Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for otherConverter (0.12 seconds)

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

        }
    
        @Override
        public IdentityConverter<T> reverse() {
          return this;
        }
    
        @Override
        <S> Converter<T, S> doAndThen(Converter<T, S> otherConverter) {
          return checkNotNull(otherConverter, "otherConverter");
        }
    
        /*
         * We *could* override convertAll() to return its input, but it's a rather pointless
         * optimization and opened up a weird type-safety problem.
         */
    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