From 5f12ed9f259a825efc7c2354230932712273fab6 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 23 Mar 2025 15:25:03 +0000 Subject: Use otherObjects where possible for find --- lib/collection.h | 32 ++++++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/collection.h b/lib/collection.h index 98f043b..6ee6c82 100644 --- a/lib/collection.h +++ b/lib/collection.h @@ -54,12 +54,19 @@ public: T * find() { - if (auto i = std::find_if(objects.begin(), objects.end(), - [](auto && o) { - return (dynamic_cast(o.get())); - }); - i != objects.end()) { - return static_cast(i->get()); + const auto & srcObjects = containerFor(); + if constexpr (std::is_convertible_v::value_type, T *>) { + if (srcObjects.empty()) { + return nullptr; + } + return srcObjects.front(); + } + else if (auto i = std::find_if(srcObjects.begin(), srcObjects.end(), + [](auto && o) { + return dynamic_cast(std::to_address(o)) != nullptr; + }); + i != srcObjects.end()) { + return static_cast(std::to_address(*i)); } return nullptr; } @@ -224,6 +231,19 @@ protected: ...); } + template + [[nodiscard]] + const auto & + containerFor() const + { + if constexpr ((std::is_convertible_v || ...)) { + return std::get>(otherObjects); + } + else { + return objects; + } + } + template auto apply_internal(const auto begin, const auto end, const auto & m, Params &&... params) const -- cgit v1.2.3