pub trait ExactSizeIterator: Iterator {
// Provided methods
fn len(&self) -> usize { ... }
fn is_empty(&self) -> bool { ... }
}
Expand description
An iterator that knows its exact length.
Many Iterator
s don’t know how many times they will iterate, but some do.
If an iterator knows how many times it can iterate, providing access to
that information can be useful. For example, if you want to iterate
backwards, a good start is to know where the end is.
When implementing an ExactSizeIterator
, you must also implement
Iterator
. When doing so, the implementation of Iterator::size_hint
must return the exact size of the iterator.
The len
method has a default implementation, so you usually shouldn’t
implement it. However, you may be able to provide a more performant
implementation than the default, so overriding it in this case makes sense.
Note that this trait is a safe trait and as such does not and cannot
guarantee that the returned length is correct. This means that unsafe
code must not rely on the correctness of Iterator::size_hint
. The
unstable and unsafe TrustedLen
trait gives
this additional guarantee.
§When shouldn’t an adapter be ExactSizeIterator
?
If an adapter makes an iterator longer, then it’s usually incorrect for
that adapter to implement ExactSizeIterator
. The inner exact-sized
iterator might already be usize::MAX
-long, and thus the length of the
longer adapted iterator would no longer be exactly representable in usize
.
This is why Chain<A, B>
isn’t ExactSizeIterator
,
even when A
and B
are both ExactSizeIterator
.
§Examples
Basic usage:
// a finite range knows exactly how many times it will iterate
let five = 0..5;
assert_eq!(5, five.len());
In the module-level docs, we implemented an Iterator
, Counter
.
Let’s implement ExactSizeIterator
for it as well:
impl ExactSizeIterator for Counter {
// We can easily calculate the remaining number of iterations.
fn len(&self) -> usize {
5 - self.count
}
}
// And now we can use it!
let mut counter = Counter::new();
assert_eq!(5, counter.len());
let _ = counter.next();
assert_eq!(4, counter.len());
Provided Methods§
1.55.0 · sourcefn len(&self) -> usize
fn len(&self) -> usize
Returns the exact remaining length of the iterator.
The implementation ensures that the iterator will return exactly len()
more times a Some(T)
value, before returning None
.
This method has a default implementation, so you usually should not
implement it directly. However, if you can provide a more efficient
implementation, you can do so. See the trait-level docs for an
example.
This function has the same safety guarantees as the
Iterator::size_hint
function.
§Examples
Basic usage:
// a finite range knows exactly how many times it will iterate
let mut range = 0..5;
assert_eq!(5, range.len());
let _ = range.next();
assert_eq!(4, range.len());
sourcefn is_empty(&self) -> bool
🔬This is a nightly-only experimental API. (exact_size_is_empty
)
fn is_empty(&self) -> bool
exact_size_is_empty
)Returns true
if the iterator is empty.
This method has a default implementation using
ExactSizeIterator::len()
, so you don’t need to implement it yourself.
§Examples
Basic usage:
#![feature(exact_size_is_empty)]
let mut one_element = std::iter::once(0);
assert!(!one_element.is_empty());
assert_eq!(one_element.next(), Some(0));
assert!(one_element.is_empty());
assert_eq!(one_element.next(), None);
Implementors§
impl ExactSizeIterator for IndexVecIntoIter
impl ExactSizeIterator for Bytes<'_>
impl ExactSizeIterator for kvarn::prelude::utils::prelude::compact_str::core::ascii::EscapeDefault
impl ExactSizeIterator for EscapeDebug
impl ExactSizeIterator for kvarn::prelude::utils::prelude::compact_str::core::char::EscapeDefault
impl ExactSizeIterator for EscapeUnicode
impl ExactSizeIterator for ToLowercase
impl ExactSizeIterator for ToUppercase
impl ExactSizeIterator for Range<i8>
impl ExactSizeIterator for Range<i16>
impl ExactSizeIterator for Range<i32>
impl ExactSizeIterator for Range<isize>
impl ExactSizeIterator for Range<u8>
impl ExactSizeIterator for Range<u16>
impl ExactSizeIterator for Range<u32>
impl ExactSizeIterator for Range<usize>
impl ExactSizeIterator for RangeInclusive<i8>
impl ExactSizeIterator for RangeInclusive<i16>
impl ExactSizeIterator for RangeInclusive<u8>
impl ExactSizeIterator for RangeInclusive<u16>
impl ExactSizeIterator for IterRange<i8>
impl ExactSizeIterator for IterRange<i16>
impl ExactSizeIterator for IterRange<isize>
impl ExactSizeIterator for IterRange<u8>
impl ExactSizeIterator for IterRange<u16>
impl ExactSizeIterator for IterRange<usize>
impl ExactSizeIterator for IterRangeInclusive<i8>
impl ExactSizeIterator for IterRangeInclusive<u8>
impl ExactSizeIterator for Args
impl ExactSizeIterator for ArgsOs
impl ExactSizeIterator for Iter
impl ExactSizeIterator for IterRaw
impl<'a> ExactSizeIterator for IndexVecIter<'a>
impl<'a> ExactSizeIterator for CommandArgs<'a>
impl<'a> ExactSizeIterator for CommandEnvs<'a>
impl<'a, E, Ix> ExactSizeIterator for Neighbors<'a, E, Ix>where
Ix: IndexType,
impl<'a, E, Ix> ExactSizeIterator for EdgeReferences<'a, E, Ix>where
Ix: IndexType,
impl<'a, I, T> ExactSizeIterator for Cloned<I>
impl<'a, I, T> ExactSizeIterator for Copied<I>
impl<'a, K> ExactSizeIterator for Iter<'a, K>
impl<'a, K> ExactSizeIterator for Iter<'a, K>
impl<'a, N> ExactSizeIterator for Nodes<'a, N>where
N: 'a + NodeTrait,
impl<'a, N, Ix> ExactSizeIterator for petgraph::csr::NodeReferences<'a, N, Ix>where
Ix: IndexType,
impl<'a, N, Ix> ExactSizeIterator for petgraph::graph_impl::NodeReferences<'a, N, Ix>where
Ix: IndexType,
impl<'a, S, T> ExactSizeIterator for SliceChooseIter<'a, S, T>
alloc
only.