| 2722 | /// This allows in-place construction using an initializer list |
| 2723 | template <typename T, typename... Args> |
| 2724 | IsMember(std::initializer_list<T> values, Args &&...args) |
| 2725 | : IsMember(std::vector<T>(values), std::forward<Args>(args)...) {} |
| 2726 | |
| 2727 | /// This checks to see if an item is in a set (empty function) |
| 2728 | template <typename T> |
nothing calls this directly
no test coverage detected