Expose Vec::get() in EntityMap.
This commit is contained in:
@@ -70,6 +70,11 @@ impl<K, V> EntityMap<K, V>
|
|||||||
k.index() < self.elems.len()
|
k.index() < self.elems.len()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Get the element at `k` if it exists.
|
||||||
|
pub fn get(&self, k: K) -> Option<&V> {
|
||||||
|
self.elems.get(k.index())
|
||||||
|
}
|
||||||
|
|
||||||
/// Is this map completely empty?
|
/// Is this map completely empty?
|
||||||
pub fn is_empty(&self) -> bool {
|
pub fn is_empty(&self) -> bool {
|
||||||
self.elems.is_empty()
|
self.elems.is_empty()
|
||||||
|
|||||||
Reference in New Issue
Block a user