add raw_ overloads for prefix/from counting
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
ad117641b8
commit
ed76797b55
2 changed files with 27 additions and 0 deletions
|
@ -33,6 +33,9 @@ impl Database {
|
|||
#[inline]
|
||||
pub fn iter(&self) -> impl Iterator<Item = (&MapsKey, &MapsVal)> + Send + '_ { self.maps.iter() }
|
||||
|
||||
#[inline]
|
||||
pub fn keys(&self) -> impl Iterator<Item = &MapsKey> + Send + '_ { self.maps.keys() }
|
||||
|
||||
#[inline]
|
||||
#[must_use]
|
||||
pub fn is_read_only(&self) -> bool { self.db.secondary || self.db.read_only }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue