| 232 | } |
| 233 | |
| 234 | TCgiParameters::const_iterator TCgiParameters::Find(const TStringBuf name, size_t pos) const noexcept Y_LIFETIME_BOUND { |
| 235 | const auto pair = equal_range(name); |
| 236 | |
| 237 | for (auto it = pair.first; it != pair.second; ++it, --pos) { |
| 238 | if (0 == pos) { |
| 239 | return it; |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | return end(); |
| 244 | } |
| 245 | |
| 246 | bool TCgiParameters::Has(const TStringBuf name, const TStringBuf value) const noexcept { |
| 247 | const auto pair = equal_range(name); |
nothing calls this directly
no test coverage detected