Implement Collection and Mutable traits
authorTomas Sedovic <tomas@sedovic.cz>
committerTomas Sedovic <tomas@sedovic.cz>
These just proxy the calls to the underlying hashmap.
src/lib.rs

index 8be503e0e16b54d26ef4649ac3bf1c6871b2b3ca..b67731966952329e32591fc45b1dee86797440f1 100644 (file)
@@ -13,7 +13,7 @@ extern crate test;
 
 use std::any::Any;
 use std::intrinsics::TypeId;
-use std::collections::HashMap;
+use std::collections::{Collection, HashMap, Mutable};
 use std::hash::{Hash, Hasher, Writer};
 use std::mem::{transmute, transmute_copy};
 use std::raw::TraitObject;
@@ -144,6 +144,22 @@ impl AnyMap {
     }
 }
 
+impl Collection for AnyMap {
+    fn len(&self) -> uint {
+        self.data.len()
+    }
+
+    fn is_empty(&self) -> bool {
+        self.data.is_empty()
+    }
+}
+
+impl Mutable for AnyMap {
+    fn clear(&mut self) {
+        self.data.clear();
+    }
+}
+
 #[bench]
 fn bench_insertion(b: &mut ::test::Bencher) {
     b.iter(|| {