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