public static int write()

in src/main/java/org/apache/datasketches/Files.java [472:481]


  public static int write(final byte[] byteArr, final FileChannel fc, final long position) {
    final int bytes;
    final ByteBuffer bb = ByteBuffer.wrap(byteArr);
    try {
      bytes = fc.write(bb, position);
    } catch (final IOException e) {
      throw new RuntimeException(e);
    }
    return bytes;
  }