We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
use_alloc
1 parent 6b931e5 commit 1131899Copy full SHA for 1131899
src/lib.rs
@@ -37,7 +37,11 @@
37
//! - `use_std`
38
//! - Enabled by default.
39
//! - Disable to compile itertools using `#![no_std]`. This disables
40
-//! any items that depend on collections (like `chunk_by`, `unique`,
+//! any item that depend on allocations (see the `use_alloc` feature)
41
+//! and hash maps (like `unique`, `counts`, `into_grouping_map` and more).
42
+//! - `use_alloc`
43
+//! - Enabled by default.
44
+//! - Enables any item that depend on allocations (like `chunk_by`,
45
//! `kmerge`, `join` and many more).
46
//!
47
//! ## Rust Version
0 commit comments