public static Exp GetIntersectCount(
Exp list,
Exp bin
)
// Intersect count of HLL bins "a" and "b"
HLLExp.GetIntersectCount(Exp.HLLBin("a"), Exp.HLLBin("b"))
// Intersect count of local HLL list with bin "b"
HLLExp.GetIntersectCount(Exp.Val(list), Exp.HLLBin("b"))