BitExp.Get Method
Create expression that returns bits from byte[] bin starting at bitOffset for bitSize.
- bin = [0b00000001, 0b01000010, 0b00000011, 0b00000100, 0b00000101]
- bitOffset = 9
- bitSize = 5
- returns [0b10000000]
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
public static Exp Get(
Exp bitOffset,
Exp bitSize,
Exp bin
)
- bitOffset Exp
-
- bitSize Exp
-
- bin Exp
-
Exp
Exp.EQ(
BitExp.Get(Exp.Val(9), Exp.Val(5), Exp.BlobBin("a")),
Exp.Val(new byte[] {(byte)0b10000000}))