Create expression that returns integer bit offset of the first specified value bit in byte[] bin
starting at bitOffset for bitSize.
Namespace: Aerospike.Client- bin = [0b00000001, 0b01000010, 0b00000011, 0b00000100, 0b00000101]
- bitOffset = 24
- bitSize = 8
- value = true
- returns 5
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.1.4.0 (4.1.4)
Syntax
Parameters
- bitOffset
- Type: Aerospike.Client Exp
offset int expression
- bitSize
- Type: Aerospike.Client Exp
size int expression
- value
- Type: Aerospike.Client Exp
boolean expression
- bin
- Type: Aerospike.Client Exp
bin or blob value expression
Examples
// lscan(a) == 5 Exp.EQ(BitExp.Lscan(Exp.Val(24), Exp.Val(8), Exp.Val(true), Exp.BlobBin("a")), Exp.Val(5))
See Also