| 1050 | bool empty() const noexcept { return m_nb_elements == 0; } |
| 1051 | |
| 1052 | size_type size() const noexcept { return m_nb_elements; } |
| 1053 | |
| 1054 | size_type max_size() const noexcept { |
| 1055 | return std::numeric_limits<IndexSizeT>::max(); |
no outgoing calls
no test coverage detected