A unified way to handle objects This is a container for objects that is used to apply different operations on the objects at the same time. It can deref to the object hashmap itself when needed.
| 100 | /// This is a container for objects that is used to apply different operations on the objects at the same time. |
| 101 | /// It can deref to the object hashmap itself when needed. |
| 102 | pub struct ObjectStorage(std::collections::HashMap<Arc<str>, Object>); |
| 103 | impl ObjectStorage { |
| 104 | /// Creates a new object storage |
| 105 | pub fn new() -> Self { |