Static Public Member Functions | List of all members
art::detail::CanBeAggregated< std::map< K, V > > Struct Template Reference

#include <aggregate.h>

Inheritance diagram for art::detail::CanBeAggregated< std::map< K, V > >:

Static Public Member Functions

static void aggregate (std::map< K, V > &p, std::map< K, V > const &other)
 

Detailed Description

template<typename K, typename V>
struct art::detail::CanBeAggregated< std::map< K, V > >

Definition at line 159 of file aggregate.h.

Member Function Documentation

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

Definition at line 161 of file aggregate.h.

162  {
163  // Maybe throw exception if insert fails.
164  p.insert(other.cbegin(), other.cend());
165  }

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