HLLExp.Describe Method

Create expression that returns indexBitCount and minHashBitCount used to create HLL bin in a list of longs. list[0] is indexBitCount and list[1] is minHashBitCount.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
C#
public static Exp Describe(
	Exp bin
)

Parameters

bin  Exp
 

Return Value

Exp

Example

C#
// Bin "a" indexBitCount < 10
Exp.LT(
  ListExp.GetByIndex(ListReturnType.VALUE, Exp.Type.INT, Exp.Val(0),
    HLLExp.describe(Exp.HLLBin("a"))),
  Exp.Val(10))

See Also