BitExp.Rscan Method
Create expression that returns integer bit offset of the last specified value bit in byte[] bin
starting at bitOffset for bitSize.
Example:
- bin = [0b00000001, 0b01000010, 0b00000011, 0b00000100, 0b00000101]
- bitOffset = 32
- bitSize = 8
- value = true
- returns 7
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
public static Exp Rscan(
Exp bitOffset,
Exp bitSize,
Exp value,
Exp bin
)
- bitOffset Exp
- offset int expression
- bitSize Exp
- size int expression
- value Exp
- boolean expression
- bin Exp
- bin or blob value expression
Exp
Exp.EQ(BitExp.Rscan(Exp.Val(32), Exp.Val(8), Exp.Val(true), Exp.BlobBin("a")), Exp.Val(7))