| 4531 | } |
| 4532 | |
| 4533 | inline bool Request::has_param(const char* key) const { |
| 4534 | return params.find(key) != params.end(); |
| 4535 | } |
| 4536 | |
| 4537 | inline std::string Request::get_param_value(const char* key, size_t id) const { |
| 4538 | auto rng = params.equal_range(key); |