@NotNull
 @Override
 @ForceInline
 public Bytes<Underlying> prewriteShort(short i16) {
   long offset = prewriteOffsetPositionMoved(2);
   bytesStore.writeShort(offset, i16);
   return this;
 }
 @NotNull
 @Override
 @ForceInline
 public Bytes<Underlying> writeShort(long offset, short i) throws BufferOverflowException {
   writeCheckOffset(offset, 2);
   bytesStore.writeShort(offset, i);
   return this;
 }