@NotNull
 @Override
 @ForceInline
 public Bytes<Underlying> prewriteInt(int i) {
   long offset = prewriteOffsetPositionMoved(4);
   bytesStore.writeInt(offset, i);
   return this;
 }
 @NotNull
 @Override
 @ForceInline
 public Bytes<Underlying> writeInt(long offset, int i) throws BufferOverflowException {
   writeCheckOffset(offset, 4);
   bytesStore.writeInt(offset, i);
   return this;
 }