NOTE: use Clone to make deep copy; copy constructors disabled
| 20 | ~ContiguousArray(); |
| 21 | // NOTE: use Clone to make deep copy; copy constructors disabled |
| 22 | ContiguousArray(ContiguousArray const&) = delete; |
| 23 | ContiguousArray& operator=(ContiguousArray const&) = delete; |
| 24 | explicit ContiguousArray(std::vector<T> const& other); |
| 25 | ContiguousArray& operator=(std::vector<T> const& other); |
nothing calls this directly
no outgoing calls
no test coverage detected