micromap 0.3.0

The fastest alternative to HashMap, for maps smaller than 20 keys
Documentation
// SPDX-FileCopyrightText: Copyright (c) 2023-2026 Yegor Bugayenko
// SPDX-License-Identifier: MIT

use super::Set;
use core::fmt::{self, Debug, Formatter};

impl<T: Debug, const N: usize> Debug for Set<T, N> {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.debug_set().entries(self.iter()).finish()
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn debugs_set() {
        let mut m: Set<String, 10> = Set::new();
        m.insert("one".to_string());
        m.insert("two".to_string());
        assert_eq!(r#"{"one", "two"}"#, format!("{:?}", m));
    }

    #[test]
    fn debug_alternate_set() {
        let mut m: Set<String, 10> = Set::new();
        m.insert("one".to_string());
        m.insert("two".to_string());
        assert_eq!(
            r#"{
    "one",
    "two",
}"#,
            format!("{:#?}", m)
        );
    }
}