in code/include/swoc/Lexicon.h [608:616]
template <typename E> Lexicon<E>::Lexicon(with items, Default handler_1, Default handler_2) {
for (auto const &item : items) {
this->define(item);
}
for (auto &&h : {handler_1, handler_2}) {
this->set_default(h);
}
}