Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ConcatenatedByteSource (0.1 sec)

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

        }
    
        @Override
        public String toString() {
          return "ByteSource.empty()";
        }
      }
    
      private static final class ConcatenatedByteSource extends ByteSource {
    
        final Iterable<? extends ByteSource> sources;
    
        ConcatenatedByteSource(Iterable<? extends ByteSource> sources) {
          this.sources = checkNotNull(sources);
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 20 20:55:20 UTC 2025
    - 25.7K bytes
    - Viewed (0)
Back to top