Return false if vector is not empty or has elements under construction at least.
| 913 | |
| 914 | //! Return false if vector is not empty or has elements under construction at least. |
| 915 | bool empty() const {return !my_early_size;} |
| 916 | |
| 917 | //! Maximum size to which array can grow without allocating more memory. Concurrent allocations are not included in the value. |
| 918 | size_type capacity() const {return internal_capacity();} |
no outgoing calls
no test coverage detected