Skip to main content

apache_datasketches_sys/
lib.rs

1#[cfg(feature = "hll")]
2pub mod hll;
3
4#[cfg(feature = "theta")]
5pub mod theta_a_not_b;
6#[cfg(feature = "theta")]
7pub mod theta_compact;
8#[cfg(feature = "theta")]
9pub mod theta_input;
10#[cfg(feature = "theta")]
11pub mod theta_intersection;
12#[cfg(feature = "theta")]
13pub mod theta_jaccard;
14#[cfg(feature = "theta")]
15pub mod theta_sketch;
16#[cfg(feature = "theta")]
17pub mod theta_union;
18#[cfg(feature = "theta")]
19pub mod theta_wrapped;
20
21#[cfg(feature = "cpc")]
22pub mod cpc_sketch;
23#[cfg(feature = "cpc")]
24pub mod cpc_union;
25
26#[cfg(feature = "tuple")]
27pub mod array_of_doubles_a_not_b;
28#[cfg(feature = "tuple")]
29pub mod array_of_doubles_compact;
30#[cfg(feature = "tuple")]
31pub mod array_of_doubles_input;
32#[cfg(feature = "tuple")]
33pub mod array_of_doubles_intersection;
34#[cfg(feature = "tuple")]
35pub mod array_of_doubles_jaccard;
36#[cfg(feature = "tuple")]
37pub mod array_of_doubles_sketch;
38#[cfg(feature = "tuple")]
39pub mod array_of_doubles_union;
40#[cfg(feature = "tuple")]
41pub mod tuple_generic;
42#[cfg(feature = "tuple")]
43pub mod tuple_generic_a_not_b;
44#[cfg(feature = "tuple")]
45pub mod tuple_generic_input;
46#[cfg(feature = "tuple")]
47pub mod tuple_generic_intersection;
48#[cfg(feature = "tuple")]
49pub mod tuple_generic_jaccard;
50#[cfg(feature = "tuple")]
51pub mod tuple_generic_union;