| 967 | */ |
| 968 | template<class T> |
| 969 | inline void flagarray_to_string(std::vector<std::string> *pvec, const BitArray<T> &val) { |
| 970 | typedef df::enum_traits<T> traits; |
| 971 | int size = traits::last_item_value-traits::first_item_value+1; |
| 972 | flagarrayToString(pvec, val.bits(), val.size(), |
| 973 | (int)traits::first_item_value, size, traits::key_table); |
| 974 | } |
| 975 | |
| 976 | /** |
| 977 | * Represent flag array bits as a string, using sep as join separator. |
nothing calls this directly
no test coverage detected