diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-08-29 14:33:08 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-08-29 14:33:08 -0700 |
| commit | d15d55973946f8f582ba69b1789b5b5d35da5b2d (patch) | |
| tree | 3196e1d3caa8f8d86948f8bb20b8ddffb5d892ec /src/libstd/collections | |
| parent | 51d0d0641000d642b257beb2fe53f5174a7879d5 (diff) | |
| download | rust-d15d55973946f8f582ba69b1789b5b5d35da5b2d.tar.gz rust-d15d55973946f8f582ba69b1789b5b5d35da5b2d.zip | |
Register new snapshots
Diffstat (limited to 'src/libstd/collections')
| -rw-r--r-- | src/libstd/collections/hashmap.rs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/libstd/collections/hashmap.rs b/src/libstd/collections/hashmap.rs index 714712d9eba..1985128c4e3 100644 --- a/src/libstd/collections/hashmap.rs +++ b/src/libstd/collections/hashmap.rs @@ -409,32 +409,14 @@ mod table { assert_eq!(size_of::<SafeHash>(), size_of::<u64>()) } - /// Note: stage0-specific version that lacks bound. - #[cfg(stage0)] - pub struct Entries<'a, K, V> { - table: &'a RawTable<K, V>, - idx: uint, - elems_seen: uint, - } - /// Iterator over shared references to entries in a table. - #[cfg(not(stage0))] pub struct Entries<'a, K:'a, V:'a> { table: &'a RawTable<K, V>, idx: uint, elems_seen: uint, } - /// Note: stage0-specific version that lacks bound. - #[cfg(stage0)] - pub struct MutEntries<'a, K, V> { - table: &'a mut RawTable<K, V>, - idx: uint, - elems_seen: uint, - } - /// Iterator over mutable references to entries in a table. - #[cfg(not(stage0))] pub struct MutEntries<'a, K:'a, V:'a> { table: &'a mut RawTable<K, V>, idx: uint, |
