| 138 | |
| 139 | template <typename... Ts> |
| 140 | explicit flat_set(Ts&&... args) : c{std::forward<Ts>(args)...} {} |
| 141 | |
| 142 | auto begin() -> iterator { return c.begin(); } |
| 143 | auto end() -> iterator { return c.end(); } |
nothing calls this directly
no outgoing calls
no test coverage detected