Module cons_
tuples_
impl
itertools
0.13.0
Module cons_
tuples_
impl
Module Items
Macros
Structs
Functions
In crate itertools
Modules
adaptors
combinations
combinations_with_replacement
concat_impl
cons_tuples_impl
diff
duplicates_impl
either_or_both
exactly_one_err
extrema_set
flatten_ok
format
group_map
groupbylazy
grouping_map
impl_macros
intersperse
iter_index
k_smallest
kmerge_impl
lazy_buffer
merge_join
minmax
multipeek_impl
pad_tail
peek_nth
peeking_take_while
permutations
powerset
process_results_impl
put_back_n_impl
rciter_impl
repeatn
size_hint
sources
structs
take_while_inclusive
tee
traits
tuple_impl
unique_impl
unziptuple
with_position
zip_eq_impl
zip_longest
ziptuple
Macros
chain
iproduct
izip
Enums
Diff
Either
EitherOrBoth
FoldWhile
MinMaxResult
Position
Traits
Itertools
MultiUnzip
PeekingNext
Functions
all
any
assert_equal
chain
cloned
concat
cons_tuples
diff_with
enumerate
equal
fold
interleave
intersperse
intersperse_with
iterate
join
kmerge
kmerge_by
max
merge
merge_join_by
min
multipeek
multiunzip
multizip
partition
peek_nth
process_results
put_back
put_back_n
rciter
repeat_n
rev
sorted
sorted_unstable
unfold
zip
zip_eq
Type Aliases
VecDequeIntoIter
VecIntoIter
itertools
Module
cons_tuples_impl
Copy item path
Settings
Help
Summary
source
Macros
§
impl_
cons_
iter
🔒
Structs
§
Cons
Tuples
An iterator that maps an iterator of tuples like
((A, B), C)
to an iterator of
(A, B, C)
.
Functions
§
cons_
tuples
Create an iterator that maps for example iterators of
((A, B), C)
to
(A, B, C)
.