polars_utils/
lib.rs

1#![cfg_attr(
2    all(target_arch = "aarch64", feature = "nightly"),
3    feature(stdarch_aarch64_prefetch)
4)]
5#![cfg_attr(feature = "nightly", feature(core_intrinsics))] // For algebraic ops, select_unpredictable.
6#![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 arg_min_max;
12pub mod array;
13#[cfg(feature = "async-utils")]
14pub mod async_utils;
15pub mod binary_search;
16pub mod bool;
17pub mod cache;
18pub mod cardinality_sketch;
19pub mod cell;
20pub mod chunks;
21pub mod clmul;
22mod config;
23pub mod cpuid;
24pub mod error;
25pub mod float16;
26pub mod floor_divmod;
27pub mod functions;
28pub mod hashing;
29pub mod ideal_morsel_size;
30pub mod idx_map;
31pub mod idx_vec;
32pub mod live_timer;
33pub mod marked_usize;
34pub mod mem;
35pub mod min_max;
36pub mod order_statistic_tree;
37pub mod parma;
38pub mod pl_path;
39mod pl_ref_str;
40pub mod pl_str;
41pub mod priority;
42pub mod regex_cache;
43pub mod relaxed_cell;
44pub mod reuse_vec;
45pub mod row_counter;
46pub mod select;
47pub mod slice;
48pub mod slice_enum;
49pub mod small_bytes;
50pub mod sort;
51pub mod sparse_init_vec;
52pub mod sync;
53#[cfg(feature = "sysinfo")]
54pub mod sys;
55pub mod total_ord;
56pub mod unique_id;
57pub mod with_drop;
58pub use functions::*;
59pub mod compression;
60pub mod file;
61
62pub mod aliases;
63pub mod fixedringbuffer;
64pub mod fmt;
65pub mod itertools;
66pub mod macros;
67pub mod option;
68pub mod vec;
69
70pub mod float;
71pub mod index;
72pub mod io;
73#[cfg(feature = "mmap")]
74pub mod mmap;
75pub mod nulls;
76pub mod partitioned;
77
78pub use index::{IdxSize, NullableIdxSize};
79pub use io::*;
80pub use pl_str::unique_column_name;
81
82#[cfg(feature = "python")]
83pub mod python_function;
84
85#[cfg(feature = "python")]
86pub mod python_convert_registry;
87
88#[cfg(feature = "serde")]
89pub mod pl_serialize;
90
91pub mod kahan_sum;
92pub use either;
93pub use idx_vec::UnitVec;
94pub mod chunked_bytes_cursor;
95pub mod concat_vec;