-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #77171 - VFLashM:better_sso_structures, r=oli-obk
Better sso structures This change greatly expands interface of MiniSet/MiniMap and renames them because they are no longer "Mini".
- Loading branch information
Showing
13 changed files
with
902 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
use std::fmt; | ||
use std::iter::ExactSizeIterator; | ||
use std::iter::FusedIterator; | ||
use std::iter::Iterator; | ||
|
||
/// Iterator which may contain instance of | ||
/// one of two specific implementations. | ||
/// | ||
/// Note: For most methods providing custom | ||
/// implementation may margianlly | ||
/// improve performance by avoiding | ||
/// doing Left/Right match on every step | ||
/// and doing it only once instead. | ||
#[derive(Clone)] | ||
pub enum EitherIter<L, R> { | ||
Left(L), | ||
Right(R), | ||
} | ||
|
||
impl<L, R> Iterator for EitherIter<L, R> | ||
where | ||
L: Iterator, | ||
R: Iterator<Item = L::Item>, | ||
{ | ||
type Item = L::Item; | ||
|
||
fn next(&mut self) -> Option<Self::Item> { | ||
match self { | ||
EitherIter::Left(l) => l.next(), | ||
EitherIter::Right(r) => r.next(), | ||
} | ||
} | ||
|
||
fn size_hint(&self) -> (usize, Option<usize>) { | ||
match self { | ||
EitherIter::Left(l) => l.size_hint(), | ||
EitherIter::Right(r) => r.size_hint(), | ||
} | ||
} | ||
} | ||
|
||
impl<L, R> ExactSizeIterator for EitherIter<L, R> | ||
where | ||
L: ExactSizeIterator, | ||
R: ExactSizeIterator, | ||
EitherIter<L, R>: Iterator, | ||
{ | ||
fn len(&self) -> usize { | ||
match self { | ||
EitherIter::Left(l) => l.len(), | ||
EitherIter::Right(r) => r.len(), | ||
} | ||
} | ||
} | ||
|
||
impl<L, R> FusedIterator for EitherIter<L, R> | ||
where | ||
L: FusedIterator, | ||
R: FusedIterator, | ||
EitherIter<L, R>: Iterator, | ||
{ | ||
} | ||
|
||
impl<L, R> fmt::Debug for EitherIter<L, R> | ||
where | ||
L: fmt::Debug, | ||
R: fmt::Debug, | ||
{ | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
match self { | ||
EitherIter::Left(l) => l.fmt(f), | ||
EitherIter::Right(r) => r.fmt(f), | ||
} | ||
} | ||
} |
Oops, something went wrong.