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

#include <aggregate.h>

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

Static Public Member Functions

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

Detailed Description

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

Definition at line 169 of file aggregate.h.

Member Function Documentation

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

Definition at line 171 of file aggregate.h.

172  {
173  CanBeAggregated<K>::aggregate(p.first, other.first);
174  CanBeAggregated<V>::aggregate(p.second, other.second);
175  }
static void aggregate(T &, T const &)
Definition: aggregate.h:53
p
Definition: test.py:223

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