| 8900 | |
| 8901 | template <> |
| 8902 | inline std::optional<std::string_view> url_search_params_keys_iter::next() { |
| 8903 | if (!has_next()) { |
| 8904 | return std::nullopt; |
| 8905 | } |
| 8906 | return params.params[pos++].first; |
| 8907 | } |
| 8908 | |
| 8909 | template <> |
| 8910 | inline std::optional<std::string_view> url_search_params_values_iter::next() { |
no outgoing calls