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

#include <aggregate.h>

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

Static Public Member Functions

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

Detailed Description

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

Definition at line 103 of file aggregate.h.

Member Function Documentation

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

Definition at line 105 of file aggregate.h.

106  {
107  p.insert(p.cend(), other.cbegin(), other.cend());
108  }

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