1.0.0[][src]Trait nom::lib::std::iter::ExactSizeIterator

pub trait ExactSizeIterator: Iterator {
    default fn len(&self) -> usize { ... }
default fn is_empty(&self) -> bool { ... } }

An iterator that knows its exact length.

Many Iterators 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 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.

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 counter = Counter::new();

assert_eq!(5, counter.len());

Provided methods

default fn len(&self) -> usize

Returns the exact number of times the iterator will iterate.

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 size_hint function.

Examples

Basic usage:

// a finite range knows exactly how many times it will iterate
let five = 0..5;

assert_eq!(5, five.len());

default fn is_empty(&self) -> bool

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

Returns true if the iterator is empty.

This method has a default implementation using self.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);
Loading content...

Implementations on Foreign Types

impl ExactSizeIterator for Args[src]

impl ExactSizeIterator for ArgsOs[src]

impl ExactSizeIterator for ToLowercase[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for EscapeDefault[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for EscapeDefault[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, I> ExactSizeIterator for &'_ mut I where
    I: ExactSizeIterator + ?Sized
[src]

impl ExactSizeIterator for ToUppercase[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for EscapeUnicode[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for EscapeDebug[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'a, T> ExactSizeIterator for IterMut<'a, T> where
    T: 'a + Send + ?Sized

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<T> ExactSizeIterator for IntoIter<T> where
    T: Send + ?Sized

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)
Loading content...

Implementors

impl ExactSizeIterator for Range<usize>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for Range<isize>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for Range<i16>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for Range<i32>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for Range<i8>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for Range<u16>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for Range<u32>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for Range<u8>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for RangeInclusive<i16>[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for RangeInclusive<i8>[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for RangeInclusive<u16>[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl ExactSizeIterator for RangeInclusive<u8>[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_> ExactSizeIterator for Bytes<'_>[src]

impl<'_, A> ExactSizeIterator for nom::lib::std::option::Iter<'_, A>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, A> ExactSizeIterator for nom::lib::std::option::IterMut<'_, A>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, I> ExactSizeIterator for Splice<'_, I> where
    I: Iterator
[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K> ExactSizeIterator for nom::lib::std::collections::hash_set::Iter<'_, K>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K> ExactSizeIterator for nom::lib::std::collections::hash_set::Drain<'_, K>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K, V> ExactSizeIterator for nom::lib::std::collections::hash_map::Iter<'_, K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K, V> ExactSizeIterator for nom::lib::std::collections::hash_map::Values<'_, K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K, V> ExactSizeIterator for nom::lib::std::collections::hash_map::ValuesMut<'_, K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K, V> ExactSizeIterator for nom::lib::std::collections::hash_map::Drain<'_, K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K, V> ExactSizeIterator for nom::lib::std::collections::hash_map::Keys<'_, K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K, V> ExactSizeIterator for nom::lib::std::collections::hash_map::IterMut<'_, K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K, V> ExactSizeIterator for nom::lib::std::collections::btree_map::Keys<'_, K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K, V> ExactSizeIterator for nom::lib::std::collections::btree_map::Values<'_, K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K, V> ExactSizeIterator for nom::lib::std::collections::btree_map::ValuesMut<'_, K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K, V> ExactSizeIterator for nom::lib::std::collections::btree_map::IterMut<'_, K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, K, V> ExactSizeIterator for nom::lib::std::collections::btree_map::Iter<'_, K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, T> ExactSizeIterator for ChunksExactMut<'_, T>[src]

default fn len(&self) -> usize
1.0.0
[src]

impl<'_, T> ExactSizeIterator for nom::lib::std::result::Iter<'_, T>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, T> ExactSizeIterator for nom::lib::std::result::IterMut<'_, T>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, T> ExactSizeIterator for RChunks<'_, T>[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, T> ExactSizeIterator for Windows<'_, T>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, T> ExactSizeIterator for ChunksMut<'_, T>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, T> ExactSizeIterator for nom::lib::std::slice::IterMut<'_, T>[src]

impl<'_, T> ExactSizeIterator for RChunksExactMut<'_, T>[src]

default fn len(&self) -> usize
1.0.0
[src]

impl<'_, T> ExactSizeIterator for ChunksExact<'_, T>[src]

default fn len(&self) -> usize
1.0.0
[src]

impl<'_, T> ExactSizeIterator for RChunksMut<'_, T>[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, T> ExactSizeIterator for nom::lib::std::slice::Iter<'_, T>[src]

impl<'_, T> ExactSizeIterator for Chunks<'_, T>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, T> ExactSizeIterator for nom::lib::std::collections::linked_list::Iter<'_, T>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, T> ExactSizeIterator for nom::lib::std::collections::binary_heap::Iter<'_, T>[src]

default fn len(&self) -> usize[src]

impl<'_, T> ExactSizeIterator for nom::lib::std::collections::vec_deque::Iter<'_, T>[src]

default fn len(&self) -> usize[src]

impl<'_, T> ExactSizeIterator for nom::lib::std::collections::linked_list::IterMut<'_, T>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, T> ExactSizeIterator for nom::lib::std::collections::btree_set::Iter<'_, T>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'_, T> ExactSizeIterator for nom::lib::std::collections::binary_heap::Drain<'_, T>[src]

default fn len(&self) -> usize
1.0.0
[src]

impl<'_, T> ExactSizeIterator for nom::lib::std::vec::Drain<'_, T>[src]

default fn len(&self) -> usize
1.0.0
[src]

impl<'_, T> ExactSizeIterator for nom::lib::std::collections::vec_deque::IterMut<'_, T>[src]

default fn len(&self) -> usize[src]

impl<'_, T> ExactSizeIterator for nom::lib::std::collections::vec_deque::Drain<'_, T>[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<'a, I, T> ExactSizeIterator for Cloned<I> where
    I: ExactSizeIterator<Item = &'a T>,
    T: 'a + Clone
[src]

impl<'a, I, T> ExactSizeIterator for Copied<I> where
    I: ExactSizeIterator<Item = &'a T>,
    T: 'a + Copy
[src]

impl<'a, T> ExactSizeIterator for RChunksExact<'a, T>[src]

default fn len(&self) -> usize
1.0.0
[src]

impl<A> ExactSizeIterator for nom::lib::std::option::IntoIter<A>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<A, B> ExactSizeIterator for Zip<A, B> where
    A: ExactSizeIterator,
    B: ExactSizeIterator
[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<A, F> ExactSizeIterator for OnceWith<F> where
    F: FnOnce() -> A, 
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<B, I, F> ExactSizeIterator for Map<I, F> where
    F: FnMut(<I as Iterator>::Item) -> B,
    I: ExactSizeIterator
[src]

impl<I> ExactSizeIterator for Enumerate<I> where
    I: ExactSizeIterator
[src]

impl<I> ExactSizeIterator for Fuse<I> where
    I: ExactSizeIterator
[src]

impl<I> ExactSizeIterator for Peekable<I> where
    I: ExactSizeIterator
[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<I> ExactSizeIterator for Rev<I> where
    I: ExactSizeIterator + DoubleEndedIterator
[src]

impl<I> ExactSizeIterator for Skip<I> where
    I: ExactSizeIterator
[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<I> ExactSizeIterator for StepBy<I> where
    I: ExactSizeIterator
[src]

default fn len(&self) -> usize
1.0.0
[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<I> ExactSizeIterator for Take<I> where
    I: ExactSizeIterator
[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<I> ExactSizeIterator for Box<I> where
    I: ExactSizeIterator + ?Sized
[src]

impl<I, F> ExactSizeIterator for Inspect<I, F> where
    F: FnMut(&<I as Iterator>::Item),
    I: ExactSizeIterator
[src]

impl<K> ExactSizeIterator for nom::lib::std::collections::hash_set::IntoIter<K>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<K, V> ExactSizeIterator for nom::lib::std::collections::hash_map::IntoIter<K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<K, V> ExactSizeIterator for nom::lib::std::collections::btree_map::IntoIter<K, V>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<T> ExactSizeIterator for Empty<T>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<T> ExactSizeIterator for nom::lib::std::result::IntoIter<T>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<T> ExactSizeIterator for Once<T>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<T> ExactSizeIterator for nom::lib::std::collections::vec_deque::IntoIter<T>[src]

default fn len(&self) -> usize[src]

impl<T> ExactSizeIterator for nom::lib::std::vec::IntoIter<T>[src]

default fn len(&self) -> usize[src]

impl<T> ExactSizeIterator for nom::lib::std::collections::linked_list::IntoIter<T>[src]

default fn len(&self) -> usize[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<T> ExactSizeIterator for nom::lib::std::collections::btree_set::IntoIter<T>[src]

default fn is_empty(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (exact_size_is_empty)

impl<T> ExactSizeIterator for nom::lib::std::collections::binary_heap::IntoIter<T>[src]

default fn len(&self) -> usize[src]

Loading content...