Cargo Features

itermore has no features set by default.

[dependencies]
itermore = { version = "0.7.1", features = ["std", "alloc", "full", "array_chunks", "array_combinations", "array_combinations_with_reps", "array_windows", "cartesian_product", "circular_array_windows", "collect_array", "combinations", "combinations_with_reps", "min_max", "next_chunk", "sorted"] }
default

Nothing is enabled by default

std full? = alloc

Support for no_std environments in a backwards compatible way

This feature currently just enables alloc but in the future it may be used to enable features that rely on std that don't exist in alloc.

alloc array_combinations? array_combinations_with_reps? combinations? combinations_with_reps? sorted? std?
full = array_chunks, array_combinations, array_combinations_with_reps, array_windows, cartesian_product, circular_array_windows, collect_array, combinations, combinations_with_reps, min_max, next_chunk, sorted, std

Enable everything

array_chunks full?

Enables the .array_chunks() adaptor for iterators

Enables arrays

Affects adaptors::array_chunks

array_combinations full? = alloc

Enables the .array_combinations() adaptor for iterators

Enables arrays

Affects adaptors::array_combinations

array_combinations_with_reps full? = alloc

Enables the .array_combinations_with_reps() adaptor for iterators

Enables arrays

Affects adaptors::array_combinations_with_reps

array_windows circular_array_windows? full?

Enables the .array_windows() adaptor for iterators

Enables arrays

Affects adaptors::array_windows

cartesian_product full?

Enables the .cartesian_product() adaptor for iterators

Affects adaptors::cartesian_product

circular_array_windows full? = array_windows

Enables the .circular_array_windows() adaptor for iterators

Affects adaptors::circular_array_windows

collect_array full?

Enables the .collect_array() method on iterators

Enables arrays

Affects xtraits::collect_array

combinations full? = alloc

Enables the .combinations() adaptor for iterators

Affects adaptors::combinations

combinations_with_reps full? = alloc

Enables the .combinations_with_reps() adaptor for iterators

Affects adaptors::combinations_with_reps

min_max full?

Enables the .min_max() and friends methods on iterators

Affects xtraits::min_max

next_chunk full?

Enables the .next_chunk() method on iterators

Enables arrays

Affects xtraits::next_chunk

sorted full? = alloc

Enables the .sorted() and friends methods on iterators

Affects xtraits::sorted