baremaps-core/src/main/java/org/apache/baremaps/database/type/LongArrayDataType.java [36:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void write(final ByteBuffer buffer, final int position, final long[] values) {
    buffer.putInt(position, size(values));
    var p = position + Integer.BYTES;
    for (long value : values) {
      buffer.putLong(p, value);
      p += Long.BYTES;
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



baremaps-core/src/main/java/org/apache/baremaps/database/type/LongListDataType.java [38:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void write(final ByteBuffer buffer, final int position, final List<Long> values) {
    buffer.putInt(position, size(values));
    var p = position + Integer.BYTES;
    for (long value : values) {
      buffer.putLong(p, value);
      p += Long.BYTES;
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



