insert any bytes in str into set
| 94 | |
| 95 | // insert any bytes in str into set |
| 96 | void InsertBytes(const char* begin, size_t length) |
| 97 | { |
| 98 | for (size_t i = 0; i < length; ++i) |
| 99 | { |
| 100 | Insert(begin[i]); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | // remove all bytes which satisfy the pred |
| 105 | template <typename Pred> |
nothing calls this directly
no outgoing calls
no test coverage detected