1 2 3 4 5 6 7 8 9 10 11 12
use crate::VecBTreeMap; use alloc::vec::Vec; use core::ops::Deref; impl<K, V> Deref for VecBTreeMap<K, V> { type Target = Vec<(K, V)>; #[inline] fn deref(&self) -> &Self::Target { &self.base } }