2019-11-04 00:00:00 +00:00
|
|
|
// check-pass
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
|
2014-10-02 21:52:06 +02:00
|
|
|
use std::slice;
|
|
|
|
|
|
2014-10-02 15:12:58 -07:00
|
|
|
pub struct PhfMapEntries<'a, T: 'a> {
|
2014-12-19 21:52:10 +01:00
|
|
|
iter: slice::Iter<'a, (&'static str, T)>,
|
2014-10-02 21:52:06 +02:00
|
|
|
}
|
|
|
|
|
|
2015-01-02 10:25:54 -05:00
|
|
|
impl<'a, T> Iterator for PhfMapEntries<'a, T> {
|
|
|
|
|
type Item = (&'static str, &'a T);
|
|
|
|
|
|
2014-10-02 21:52:06 +02:00
|
|
|
fn next(&mut self) -> Option<(&'static str, &'a T)> {
|
|
|
|
|
self.iter.by_ref().map(|&(key, ref value)| (key, value)).next()
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
2014-10-02 21:52:06 +02:00
|
|
|
self.iter.size_hint()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|