diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/collection.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/collection.h b/lib/collection.h index 329b681..98f043b 100644 --- a/lib/collection.h +++ b/lib/collection.h @@ -103,15 +103,24 @@ public: return applyOne_internal<T>(objects.rbegin(), objects.rend(), m, std::forward<Params>(params)...); } - template<typename T = Object> + template<typename T> + requires(std::is_convertible_v<T *, Others *> || ...) auto removeAll() { + std::get<OtherObjects<T>>(otherObjects).clear(); return std::erase_if(objects, [](auto && op) { return dynamic_cast<T *>(op.get()); }); } + void + clear() + { + ((std::get<OtherObjects<Others>>(otherObjects).clear()), ...); + objects.clear(); + } + [[nodiscard]] auto begin() const { |