Static Public Member Functions | List of all members
art::detail::CanBeAggregated< std::set< T > > Struct Template Reference

#include <aggregate.h>

Inheritance diagram for art::detail::CanBeAggregated< std::set< T > >:

Static Public Member Functions

static void aggregate (std::set< T > &p, std::set< T > const &other)
 

Detailed Description

template<typename T>
struct art::detail::CanBeAggregated< std::set< T > >

Definition at line 188 of file aggregate.h.

Member Function Documentation

template<typename T >
static void art::detail::CanBeAggregated< std::set< T > >::aggregate ( std::set< T > &  p,
std::set< T > const &  other 
)
inlinestatic

Definition at line 190 of file aggregate.h.

191  {
192  // Maybe throw exception if insert fails.
193  p.insert(other.cbegin(), other.cend());
194  }

The documentation for this struct was generated from the following file: