| 27 | public: |
| 28 | size_t capacity() const FLPURE {return _capacity;} |
| 29 | size_t size() const FLPURE {return _size;} |
| 30 | bool empty() const FLPURE {return _size == 0;} |
| 31 | |
| 32 | /// The maximum size a smallVector can grow to. |
nothing calls this directly
no outgoing calls
no test coverage detected