Exp.Rscan Method
Create expression that scans integer bits from right (least significant bit) to
left (most significant bit), looking for a search bit value. When the
search value is found, the index of that bit (where the most significant bit is
index 0) is returned. If "search" is true, the scan will search for the bit
value 1. If "search" is false it will search for bit value 0.
Requires server version 5.6.0+.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
public static Exp Rscan(
Exp value,
Exp search
)
- value Exp
-
- search Exp
-
Exp
Exp.EQ(
Exp.Rscan(Exp.IntBin("a"), Exp.Val(true)),
Exp.Val(4));