Added doc string to the OrderedIter struct

This commit is contained in:
Donny Zimmanck 2021-11-12 13:30:58 -08:00
parent 8b320e64e7
commit ae103535d3

View File

@ -272,6 +272,7 @@ impl<T, const N: usize> Default for HistoryBuffer<T, N> {
}
}
/// An iterator on the underlying buffer ordered from oldest data to newest
#[derive(Clone)]
pub struct OrderedIter<'a, T, const N: usize> {
buf: &'a HistoryBuffer<T, N>,