Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConcatenatedCharSource (0.15 sec)

  1. android/guava/src/com/google/common/io/CharSource.java

        }
    
        @Override
        public String toString() {
          return "CharSource.empty()";
        }
      }
    
      private static final class ConcatenatedCharSource extends CharSource {
    
        private final Iterable<? extends CharSource> sources;
    
        ConcatenatedCharSource(Iterable<? extends CharSource> sources) {
          this.sources = checkNotNull(sources);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/CharSource.java

        }
    
        @Override
        public String toString() {
          return "CharSource.empty()";
        }
      }
    
      private static final class ConcatenatedCharSource extends CharSource {
    
        private final Iterable<? extends CharSource> sources;
    
        ConcatenatedCharSource(Iterable<? extends CharSource> sources) {
          this.sources = checkNotNull(sources);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 25.1K bytes
    - Viewed (0)
Back to top