@NotNull @Override @ForceInline public Bytes<Underlying> writeFloat(float f) { long offset = writeOffsetPositionMoved(4); bytesStore.writeFloat(offset, f); return this; }
@NotNull @Override @ForceInline public Bytes<Underlying> writeFloat(long offset, float d) throws BufferOverflowException { writeCheckOffset(offset, 4); bytesStore.writeFloat(offset, d); return this; }