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

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

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