added size

This commit is contained in:
masterexplorer 2024-08-27 10:29:55 +02:00
parent 5184e5f3a2
commit 0e0b22484f

View File

@ -60,6 +60,10 @@ public:
insert(elem);
}
}
inline uint32_t size() noexcept {
return count;
}
};
#endif /* TURBO_LIST_H */