Insert all elements of src into a std::set with a custom comparator.
Declared in <util/insert.h>
template<
typename TsetT,
typename Compare,
typename Tsrc>
void
insert(
std::set<TsetT, Compare>& dst,
Tsrc const& src);
| Name | Description |
|---|---|
| dst | The set to insert into. |
| src | The container whose elements are inserted. |