| 346 | |
| 347 | template <typename ElementType, size_t preSize> |
| 348 | typename SmallVector<ElementType, preSize>::size_type SmallVector<ElementType, preSize>::capacity() const noexcept { return numAllocated; } |
| 349 | |
| 350 | template <typename ElementType, size_t preSize> |
| 351 | bool SmallVector<ElementType, preSize>::empty() const noexcept { return numElements == 0; } |
no outgoing calls
no test coverage detected