Helper function to allow ignore_underscore to be passed to IsMember or Transform
| 2924 | |
| 2925 | /// Helper function to allow ignore_underscore to be passed to IsMember or Transform |
| 2926 | inline std::string ignore_underscore(std::string item) { return detail::remove_underscore(item); } |
| 2927 | |
| 2928 | /// Helper function to allow checks to ignore spaces to be passed to IsMember or Transform |
| 2929 | inline std::string ignore_space(std::string item) { |
nothing calls this directly
no test coverage detected