inline constexpr CharSet::CharSet()

in code/include/swoc/TextView.h [1105:1109]


inline constexpr CharSet::CharSet(TextView const &chars) {
  for (auto c : chars) {
    _chars[uint8_t(c)] = true;
  }
}