| 17 | /// but is encoded much more efficiently as a bit vector. |
| 18 | #[derive(PartialEq, Eq, Hash)] |
| 19 | pub struct EntitySet<T> |
| 20 | where |
| 21 | T: EntityRef, |
| 22 | { |
| 23 | storage: Vec<Word>, |
| 24 | marker: PhantomData<T>, |
| 25 | } |
| 26 | |
| 27 | impl<T> Clone for EntitySet<T> |
| 28 | where |
nothing calls this directly
no outgoing calls
no test coverage detected