template Lexicon::Lexicon()

in code/include/swoc/Lexicon.h [618:622]


template <typename E> Lexicon<E>::Lexicon(Default handler_1, Default handler_2) {
  for (auto &&h : {handler_1, handler_2}) {
    this->set_default(h);
  }
}