| 53 | |
| 54 | template <class It, class TStripCriterion> |
| 55 | inline void StripRangeEnd(const It& b, It& e, TStripCriterion&& criterion) noexcept { |
| 56 | while (b < e && criterion(e - 1)) { |
| 57 | --e; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | template <class It> |
| 62 | inline void StripRangeEnd(const It& b, It& e) noexcept { |
no test coverage detected