diff --git a/include/opp/static_vector.h b/include/opp/static_vector.h index bc48684..237160c 100644 --- a/include/opp/static_vector.h +++ b/include/opp/static_vector.h @@ -69,6 +69,11 @@ public: return _size == 0; } + bool full(void) const + { + return _size == N; + } + size_t capacity(void) const { return N;