Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for amat (0.21 sec)

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

       */
      public static void skipFully(Reader reader, long n) throws IOException {
        checkNotNull(reader);
        while (n > 0) {
          long amt = reader.skip(n);
          if (amt == 0) {
            throw new EOFException();
          }
          n -= amt;
        }
      }
    
      /**
       * Returns a {@link Writer} that simply discards written chars.
       *
       * @since 15.0
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed May 17 14:35:11 GMT 2023
    - 10.9K bytes
    - Viewed (0)
Back to top