public static MappedByteBuffer getMappedByteBuffer()

in src/main/java/org/apache/datasketches/Files.java [209:218]


  public static MappedByteBuffer getMappedByteBuffer(final FileChannel fChan,
      final FileChannel.MapMode mmode, final long position, final long size) {
    final MappedByteBuffer mbBuf;
    try {
      mbBuf = fChan.map(mmode, position, size);
    } catch (final IOException e) {
      throw new RuntimeException(e);
    }
    return mbBuf;
  }