Create bit "left scan" operation.
Server returns integer bit offset of the first specified value bit in byte[] bin
starting at bitOffset for bitSize.
Example:
- bin = [0b00000001, 0b01000010, 0b00000011, 0b00000100, 0b00000101]
- bitOffset = 24
- bitSize = 8
- value = true
- returns 5
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.0.0 (5.1.0)
Syntax
C#
public static Operation Lscan( string binName, int bitOffset, int bitSize, bool value )
Parameters
- binName
- Type: SystemString
- bitOffset
- Type: SystemInt32
- bitSize
- Type: SystemInt32
- value
- Type: SystemBoolean
Return Value
Type: OperationSee Also