public static boolean ready()

in src/main/java/org/apache/datasketches/Files.java [774:782]


  public static boolean ready(final Reader in) {
    boolean out = false;
    try {
      out = in.ready();
    } catch (final IOException e) {
      throw new RuntimeException(LS + "Reader.ready() unsuccessful: " + LS + e);
    }
    return out;
  }