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

#include <aggregate.h>

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

Static Public Member Functions

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

Detailed Description

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

Definition at line 94 of file aggregate.h.

Member Function Documentation

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

Definition at line 96 of file aggregate.h.

97  {
98  p.insert(p.cend(), other.cbegin(), other.cend());
99  }

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