refactor(header): remove unused VecMap.is_empty

This commit is contained in:
Sean McArthur
2017-04-26 13:46:44 -07:00
parent 8d6d9a21af
commit 5130fa4bad

View File

@@ -54,9 +54,6 @@ impl<K: PartialEq, V> VecMap<K, V> {
#[inline]
pub fn len(&self) -> usize { self.vec.len() }
#[inline]
pub fn is_empty(&self) -> bool { self.vec.is_empty() }
#[inline]
pub fn iter(&self) -> ::std::slice::Iter<(K, V)> {
self.vec.iter()