| 394 | } |
| 395 | |
| 396 | struct PrefixLess { |
| 397 | bool operator()(const butil::StringPiece& path, |
| 398 | const RestfulMethodProperty* p) const { |
| 399 | return path < p->path.prefix; |
| 400 | } |
| 401 | }; |
| 402 | |
| 403 | const Server::MethodProperty* |
| 404 | RestfulMap::FindMethodProperty(const butil::StringPiece& method_path, |