From 014373a9ef99e4c9cc1c15f52e0946ea413c868d Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Fri, 28 Mar 2025 01:20:16 +0000 Subject: Expose size of each container by type --- lib/collection.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib') diff --git a/lib/collection.h b/lib/collection.h index 91a36c2..22dcc52 100644 --- a/lib/collection.h +++ b/lib/collection.h @@ -35,6 +35,14 @@ public: return objects[idx]; } + template + requires(std::is_same_v || (std::is_base_of_v || ...)) + [[nodiscard]] auto + size() const noexcept + { + return containerFor().size(); + } + template auto create(Params &&... params) -- cgit v1.2.3