| 416 | // parameter. This is similar to the overloads for Split() below. |
| 417 | template <typename Delimiter> |
| 418 | inline LimitImpl<Delimiter> Limit(Delimiter delim, int limit) { |
| 419 | return LimitImpl<Delimiter>(delim, limit); |
| 420 | } |
| 421 | |
| 422 | inline LimitImpl<Literal> Limit(const char* s, int limit) { |
| 423 | return LimitImpl<Literal>(Literal(s), limit); |
no test coverage detected