| 31 | |
| 32 | template <class T, class T1> |
| 33 | static inline T1 Apply(T b, T e, T1 to, const Recoder& mapper) { |
| 34 | while (b != e) { |
| 35 | *to++ = mapper.Table[(unsigned char)*b++]; |
| 36 | } |
| 37 | |
| 38 | return to; |
| 39 | } |
| 40 | |
| 41 | template <class T, class T1> |
| 42 | static inline T1 Apply(T b, T1 to, const Recoder& mapper) { |
no outgoing calls
no test coverage detected