macro_rules! fast_secure_hash_set {
    (@single $($x:tt)*) => { ... };
    (@count $($rest:expr),*) => { ... };
    ($($key:expr,)+) => { ... };
    ($($key:expr),*) => { ... };
}
Expand description

Create a FastSecureHashSet from a list of elements.