| 74 | // bool pred(unsigned char byte) |
| 75 | template <typename Pred> |
| 76 | void InsertPred(const Pred& pred) |
| 77 | { |
| 78 | for (int c = 0; c <= UCHAR_MAX; ++c) |
| 79 | { |
| 80 | if (pred(c)) |
| 81 | Insert(c); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | // insert any bytes in str into set |
| 86 | void InsertString(const char* str) |
nothing calls this directly
no outgoing calls
no test coverage detected