| 87 | void clear(ResourceManager* resources); |
| 88 | |
| 89 | static void clear(CollectionData* collection, ResourceManager* resources) { |
| 90 | if (!collection) |
| 91 | return; |
| 92 | collection->clear(resources); |
| 93 | } |
| 94 | |
| 95 | SlotId head() const { |
| 96 | return head_; |
nothing calls this directly
no outgoing calls
no test coverage detected