Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

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

        public Stream<String> lines() {
          return stream(linesIterator());
        }
    
        @Override
        public @Nullable String readFirstLine() {
          Iterator<String> lines = linesIterator();
          return lines.hasNext() ? lines.next() : null;
        }
    
        @Override
        public ImmutableList<String> readLines() {
          return ImmutableList.copyOf(linesIterator());
        }
    
        @Override
        @ParametricNullness
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 25.7K bytes
    - Click Count (0)
Back to Top