Create expression that returns bits from byte[] bin starting at bitOffset for bitSize.
Namespace: Aerospike.Client- bin = [0b00000001, 0b01000010, 0b00000011, 0b00000100, 0b00000101]
- bitOffset = 9
- bitSize = 5
- returns [0b10000000]
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.0.2.0 (4.0.2)
Syntax
Parameters
- bitOffset
- Type: Aerospike.Client Exp
- bitSize
- Type: Aerospike.Client Exp
- bin
- Type: Aerospike.Client Exp
Examples
// Bin "a" bits = [0b10000000] Exp.EQ( BitExp.Get(Exp.Val(9), Exp.Val(5), Exp.BlobBin("a")), Exp.Val(new byte[] {(byte)0b10000000}))
See Also