diff --git a/TurboList.hpp b/TurboList.hpp index af4007a..45beed0 100644 --- a/TurboList.hpp +++ b/TurboList.hpp @@ -60,6 +60,10 @@ public: insert(elem); } } + + inline uint32_t size() noexcept { + return count; + } }; #endif /* TURBO_LIST_H */