Module option
Available on crate feature trie
only.
Expand description
Parallel iterator types for options
You will rarely need to interact with this module directly unless you need
to name one of the iterator types.
- IntoIter
- A parallel iterator over the value in
Some
variant of an Option
. - Iter
- A parallel iterator over a reference to the
Some
variant of an Option
. - IterMut
- A parallel iterator over a mutable reference to the
Some
variant of an Option
.