コード例 #1
0
  public CharBuffer put(int i, char x) {

    Bits.putCharB(bb, ix(checkIndex(i)), x);
    return this;
  }
コード例 #2
0
  public CharBuffer put(char x) {

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