コード例 #1
0
 public override LongBuffer Put(int i, long x)
 {
     @unsafe.putLong(Ix(CheckIndex(i)), Bits.Swap((x)));
     return(this);
 }
コード例 #2
0
 public override long Get(int i)
 {
     return(Bits.Swap(@unsafe.getLong(Ix(CheckIndex(i)))));
 }
コード例 #3
0
 public override LongBuffer Put(long x)
 {
     @unsafe.putLong(Ix(NextPutIndex()), Bits.Swap((x)));
     return(this);
 }
コード例 #4
0
 public override long Get()
 {
     return(Bits.Swap(@unsafe.getLong(Ix(NextGetIndex()))));
 }