Skip to content

Commit 1131899

Browse files
Philippe-Choletjswrenn
authored andcommitted
Document the use_alloc feature
1 parent 6b931e5 commit 1131899

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@
3737
//! - `use_std`
3838
//! - Enabled by default.
3939
//! - Disable to compile itertools using `#![no_std]`. This disables
40-
//! any items that depend on collections (like `chunk_by`, `unique`,
40+
//! 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`,
4145
//! `kmerge`, `join` and many more).
4246
//!
4347
//! ## Rust Version

0 commit comments

Comments
 (0)