Create expression that returns a HLL object that is the union of all specified HLL objects
in the list with the HLL bin.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp GetUnion( Exp list, Exp bin )
Parameters
- list
- Type: Aerospike.ClientExp
- bin
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// Union of HLL bins "a" and "b" HLLExp.GetUnion(Exp.HLLBin("a"), Exp.HLLBin("b")) // Union of local HLL list with bin "b" HLLExp.GetUnion(Exp.Val(list), Exp.HLLBin("b"))
See Also