Example #1
0
 public IByteBuffer SetIntLE(int index, int value)
 {
     HeapByteBufferUtils.SetIntLE(this.Array, index, value);
     return(this);
 }
Example #2
0
 public IByteBuffer SetLongLE(int index, long value)
 {
     HeapByteBufferUtils.SetLongLE(this.Array, index, value);
     return(this);
 }
Example #3
0
 public long GetLongLE(int index)
 {
     this.CheckIndex(index, 8);
     return(HeapByteBufferUtils.GetLongLE(this.Array, index));
 }
Example #4
0
 public int GetIntLE(int index)
 {
     this.CheckIndex(index, 4);
     return(HeapByteBufferUtils.GetIntLE(this.Array, index));
 }
Example #5
0
 public int GetUnsignedMediumLE(int index)
 {
     this.CheckIndex(index, 3);
     return(HeapByteBufferUtils.GetUnsignedMediumLE(this.Array, index));
 }
Example #6
0
 public short GetShortLE(int index)
 {
     this.CheckIndex(index, 2);
     return(HeapByteBufferUtils.GetShortLE(this.Array, index));
 }
Example #7
0
 public byte GetByte(int index)
 {
     this.CheckIndex(index);
     return(HeapByteBufferUtils.GetByte(this.Array, index));
 }