1#![cfg_attr(
2 all(target_arch = "aarch64", feature = "nightly"),
3 feature(stdarch_aarch64_prefetch)
4)]
5#![cfg_attr(feature = "nightly", feature(core_intrinsics))] #![cfg_attr(feature = "nightly", allow(internal_features))]
7#![cfg_attr(docsrs, feature(doc_cfg))]
8pub mod abs_diff;
9pub mod algebraic_ops;
10pub mod arena;
11pub mod binary_search;
12pub mod cache;
13pub mod cardinality_sketch;
14pub mod cell;
15pub mod chunks;
16pub mod clmul;
17mod config;
18pub use config::check_allow_importing_interval_as_struct;
19pub mod cpuid;
20pub mod decimal;
21pub mod error;
22pub mod floor_divmod;
23pub mod functions;
24pub mod hashing;
25pub mod idx_map;
26pub mod idx_mapper;
27pub mod idx_vec;
28pub mod mem;
29pub mod min_max;
30pub mod order_statistic_tree;
31pub mod parma;
32pub mod pl_str;
33pub mod plpath;
34pub mod priority;
35pub mod regex_cache;
36pub mod relaxed_cell;
37pub mod row_counter;
38pub mod select;
39pub mod slice;
40pub mod slice_enum;
41pub mod sort;
42pub mod sparse_init_vec;
43pub mod sync;
44#[cfg(feature = "sysinfo")]
45pub mod sys;
46pub mod total_ord;
47pub mod unique_id;
48pub mod with_drop;
49
50pub use functions::*;
51pub mod compression;
52pub mod file;
53
54pub mod aliases;
55pub mod fixedringbuffer;
56pub mod fmt;
57pub mod itertools;
58pub mod macros;
59pub mod option;
60pub mod vec;
61
62pub mod float;
63pub mod index;
64pub mod io;
65#[cfg(feature = "mmap")]
66pub mod mmap;
67pub mod nulls;
68pub mod partitioned;
69
70pub use index::{IdxSize, NullableIdxSize};
71pub use io::*;
72pub use pl_str::unique_column_name;
73
74#[cfg(feature = "python")]
75pub mod python_function;
76
77#[cfg(feature = "python")]
78pub mod python_convert_registry;
79
80#[cfg(feature = "serde")]
81pub mod pl_serialize;
82
83pub mod kahan_sum;
84pub use either;
85pub use idx_vec::UnitVec;