micromap_rawl/set/
clone.rs

1use crate::Set;
2
3impl<T: Clone + PartialEq, const N: usize> Clone for Set<T, N> {
4    fn clone(&self) -> Self {
5        Self {
6            map: self.map.clone(),
7        }
8    }
9}