in src/main/java/org/apache/datasketches/Files.java [342:348]
public static void position(final FileChannel fc, final long position) {
try {
fc.position(position);
} catch (final IOException e) {
throw new RuntimeException(e);
}
}