Constructors
| 35 | |
| 36 | // Constructors |
| 37 | ArrayTag() = default; |
| 38 | explicit ArrayTag(storage_type v) : v_(std::move(v)) {} |
| 39 | template <class It> |
| 40 | ArrayTag(It first, It last) : v_(first, last) |
nothing calls this directly
no outgoing calls
no test coverage detected