示例#1
0
  public LongBuffer put(int i, long x) {

    Bits.putLongB(bb, ix(checkIndex(i)), x);
    return this;
  }
示例#2
0
  public LongBuffer put(long x) {

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