From 983fc421145cf18f5e3f6398b5b712ed5503f9fd Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Tue, 25 Jan 2022 23:54:57 +1100 Subject: [PATCH] Unravel another obsolete macro With the removal of the raw module, it serves no more purpose. --- src/lib.rs | 154 ++++++++++++++++++++++++----------------------------- 1 file changed, 69 insertions(+), 85 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 4e8a7eb..79a4561 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -48,87 +48,6 @@ pub use hashbrown::hash_map as raw_hash_map; use self::raw_hash_map::HashMap; -macro_rules! impl_common_methods { - ( - field: $t:ident.$field:ident; - new() => $new:expr; - with_capacity($with_capacity_arg:ident) => $with_capacity:expr; - ) => { - impl $t { - /// Create an empty collection. - #[inline] - pub fn new() -> $t { - $t { - $field: $new, - } - } - - /// Creates an empty collection with the given initial capacity. - #[inline] - pub fn with_capacity($with_capacity_arg: usize) -> $t { - $t { - $field: $with_capacity, - } - } - - /// Returns the number of elements the collection can hold without reallocating. - #[inline] - pub fn capacity(&self) -> usize { - self.$field.capacity() - } - - /// Reserves capacity for at least `additional` more elements to be inserted - /// in the collection. The collection may reserve more space to avoid - /// frequent reallocations. - /// - /// # Panics - /// - /// Panics if the new allocation size overflows `usize`. - #[inline] - pub fn reserve(&mut self, additional: usize) { - self.$field.reserve(additional) - } - - /// Shrinks the capacity of the collection as much as possible. It will drop - /// down as much as possible while maintaining the internal rules - /// and possibly leaving some space in accordance with the resize policy. - #[inline] - pub fn shrink_to_fit(&mut self) { - self.$field.shrink_to_fit() - } - - // Additional stable methods (as of 1.60.0-nightly) that could be added: - // try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> (1.57.0) - // shrink_to(&mut self, min_capacity: usize) (1.56.0) - - /// Returns the number of items in the collection. - #[inline] - pub fn len(&self) -> usize { - self.$field.len() - } - - /// Returns true if there are no items in the collection. - #[inline] - pub fn is_empty(&self) -> bool { - self.$field.is_empty() - } - - /// Removes all items from the collection. Keeps the allocated memory for reuse. - #[inline] - pub fn clear(&mut self) { - self.$field.clear() - } - } - - impl Default for $t { - #[inline] - fn default() -> $t { - $t::new() - } - } - } -} - mod any; /// Raw access to the underlying `HashMap`. @@ -210,13 +129,78 @@ impl Clone for Map where Box: Clone { /// It’s a bit sad, really. Ah well, I guess this approach will do. pub type AnyMap = Map; -impl_common_methods! { - field: Map.raw; - new() => RawMap::with_hasher(Default::default()); - with_capacity(capacity) => RawMap::with_capacity_and_hasher(capacity, Default::default()); +impl Default for Map { + #[inline] + fn default() -> Map { + Map::new() + } } impl Map { + /// Create an empty collection. + #[inline] + pub fn new() -> Map { + Map { + raw: RawMap::with_hasher(Default::default()), + } + } + + /// Creates an empty collection with the given initial capacity. + #[inline] + pub fn with_capacity(capacity: usize) -> Map { + Map { + raw: RawMap::with_capacity_and_hasher(capacity, Default::default()), + } + } + + /// Returns the number of elements the collection can hold without reallocating. + #[inline] + pub fn capacity(&self) -> usize { + self.raw.capacity() + } + + /// Reserves capacity for at least `additional` more elements to be inserted + /// in the collection. The collection may reserve more space to avoid + /// frequent reallocations. + /// + /// # Panics + /// + /// Panics if the new allocation size overflows `usize`. + #[inline] + pub fn reserve(&mut self, additional: usize) { + self.raw.reserve(additional) + } + + /// Shrinks the capacity of the collection as much as possible. It will drop + /// down as much as possible while maintaining the internal rules + /// and possibly leaving some space in accordance with the resize policy. + #[inline] + pub fn shrink_to_fit(&mut self) { + self.raw.shrink_to_fit() + } + + // Additional stable methods (as of 1.60.0-nightly) that could be added: + // try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> (1.57.0) + // shrink_to(&mut self, min_capacity: usize) (1.56.0) + + /// Returns the number of items in the collection. + #[inline] + pub fn len(&self) -> usize { + self.raw.len() + } + + /// Returns true if there are no items in the collection. + #[inline] + pub fn is_empty(&self) -> bool { + self.raw.is_empty() + } + + /// Removes all items from the collection. Keeps the allocated memory for reuse. + #[inline] + pub fn clear(&mut self) { + self.raw.clear() + } + /// Returns a reference to the value stored in the collection for the type `T`, if it exists. #[inline] pub fn get>(&self) -> Option<&T> { -- 2.42.0