| 93 | } |
| 94 | |
| 95 | template <> std::optional<std::string> parse<std::string>(std::string_view s) |
| 96 | { |
| 97 | if (auto r = parse<std::string_view>(s)) |
| 98 | return std::string(*r); |
| 99 | return std::nullopt; |
| 100 | } |
| 101 | |
| 102 | template <> std::optional<dm::bool2> parse(std::string_view s) { return parse_vector<dm::bool2>(s); } |
| 103 | template <> std::optional<dm::bool3> parse(std::string_view s) { return parse_vector<dm::bool3>(s); } |
nothing calls this directly
no outgoing calls
no test coverage detected