Module combin_iterator::alternate_iterator
source · Expand description
§Altern
The Altern
module provides an iterator, Altern
, for alternately traversing multiple iterators.
§Usage
To use Altern
, create a new instance with new()
and add iterators using the add
method. The next
method
will then yield elements from the added iterators in a round-robin fashion until all iterators are exhausted.
§Examples
use std::vec;
use crate::altern;
let vec1 = vec![1, 4, 7, 9];
let vec2 = vec![2, 5];
let vec3 = vec![3, 6, 8];
// Create an Altern iterator and add individual iterators
let iter = Altern::new().add(vec1.iter()).add(vec2.iter()).add(vec3.iter());
// Alternatively, use the `altern!` macro for a more concise syntax
let iter_macro = altern!(vec1.iter(), vec2.iter(), vec3.iter());
// Both iterators should yield the same results
assert_eq!(iter.collect::<Vec<_>>(), vec![&1, &2, &3, &4, &5, &6, &7, &8, &9]);
assert_eq!(iter_macro.collect::<Vec<_>>(), vec![&1, &2, &3, &4, &5, &6, &7, &8, &9]);
§Notes
- The
altern!
macro provides a convenient way to create anAltern
iterator with a cleaner syntax. - The
next
method is designed to be robust, and its internal state management should not lead to panics under normal usage scenarios. However, if a panic is encountered, it indicates a potential bug or misuse of theAltern
iterator. In such cases, it is recommended to contact the crate manager or maintainers to report the issue and seek assistance in resolving the problem. - For any concerns related to stability, bug reports, or feature requests, please refer to the crate’s documentation or contact the crate maintainers for support.
§License
This module is licensed under the MIT License - see the LICENSE file for details.
§Todo
- Add more robustness checks to handle edge cases.