sklears_utils/data_structures/
concurrenthashmap_traits.rs

1//! # ConcurrentHashMap - Trait Implementations
2//!
3//! This module contains trait implementations for `ConcurrentHashMap`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::ConcurrentHashMap;
12use std::hash::Hash;
13
14impl<K: Clone + Eq + Hash, V: Clone> Default for ConcurrentHashMap<K, V> {
15    fn default() -> Self {
16        Self::new()
17    }
18}