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