1
2
3
4
5
6
7
8
9
#![allow(unused)]

mod try_traits;
mod map;

pub use try_traits::*;
pub use map::TryHashMap;

pub type TryReserveError = hashbrown::TryReserveError;