| 173 | } |
| 174 | |
| 175 | __forceinline size_t size() const |
| 176 | { |
| 177 | if (isStackAllocated()) return max_stack_elements; |
| 178 | else return max_total_elements; |
| 179 | } |
| 180 | |
| 181 | __forceinline void resize(size_t M) |
| 182 | { |
nothing calls this directly
no test coverage detected