rust_macios/foundation/
ns_set.rs

1use std::marker::PhantomData;
2
3use crate::object;
4
5object! {
6    /// A static, unordered collection of unique objects.
7    unsafe pub struct NSSet<T> {
8        marker: PhantomData<T>,
9    }
10}