public CharBuffer put(int i, char x) {

    Bits.putCharB(bb, ix(checkIndex(i)), x);
    return this;
  }
  public CharBuffer put(char x) {

    Bits.putCharB(bb, ix(nextPutIndex()), x);
    return this;
  }