Struct BSTHashMap

Source
pub struct BSTHashMap<K, V>(/* private fields */)
where
    K: Hash + Eq;

Implementations§

Source§

impl<K, V> BSTHashMap<K, V>
where K: Hash + Eq,

Source

pub fn new() -> Self

Source

pub fn get(&self, key: &K) -> Option<&V>

Source

pub fn get_mut(&mut self, key: &K) -> Option<&mut V>

Source

pub fn insert(&mut self, key: K, value: V) -> (Iter<'_, (K, V)>, bool)

Source

pub fn clear(&mut self)

Source

pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut (K, V)>

Source§

impl<K, V> BSTHashMap<K, V>
where K: Hash + Eq,

Source

pub fn iter(&self) -> BSTHashMapIter<'_, K, V>

Source§

impl<K, V> BSTHashMap<K, V>
where K: Hash + Eq + Debug, V: Debug,

Source

pub fn show_memory_layout(&self) -> Result<String>

👎Deprecated: Using this function in a game will result in a SIGV. Cause currently unknown.

Show the memory layout of the BSTHashMap.

§Errors

Failed to write string.

§Examples
use commonlibsse_ng::re::BSTHashMap::BSTHashMap;

let mut map = BSTHashMap::new();
map.insert(42, "hello");
map.insert(17, "world");
map.insert(99, "extra");
map.insert(13, "foo");

print!("{}", map.show_memory_layout().unwrap());

// Output =>

// Memory Layout Visualization:
// Capacity: 8
// Free slots: 4
// ------------------------------------------
// [000] 17 => "world"
// [001] 13 => "foo"
// [002] 42 => "hello" -> 17 => "world"
// [003] EMPTY (Non-occupied)
// [004] EMPTY (Non-occupied)
// [005] 99 => "extra" -> 13 => "foo"
// [006] EMPTY (Non-occupied)
// [007] EMPTY (Non-occupied)
// ------------------------------------------

Trait Implementations§

Source§

impl<K, V> Debug for BSTHashMap<K, V>
where K: Hash + Eq + Debug, V: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<K, V> Default for BSTHashMap<K, V>
where K: Hash + Eq,

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<K, V> Freeze for BSTHashMap<K, V>

§

impl<K, V> RefUnwindSafe for BSTHashMap<K, V>

§

impl<K, V> !Send for BSTHashMap<K, V>

§

impl<K, V> !Sync for BSTHashMap<K, V>

§

impl<K, V> Unpin for BSTHashMap<K, V>

§

impl<K, V> UnwindSafe for BSTHashMap<K, V>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more