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