Public Types | Static Public Member Functions | List of all members
util::details::make_collection_reference_impl< Coll, typename > Struct Template Reference

#include <ContainerMeta.h>

Public Types

using type = std::reference_wrapper< Coll >
 

Static Public Member Functions

static auto make (Coll &coll)
 

Detailed Description

template<typename Coll, typename = void>
struct util::details::make_collection_reference_impl< Coll, typename >

Definition at line 291 of file ContainerMeta.h.

Member Typedef Documentation

template<typename Coll, typename = void>
using util::details::make_collection_reference_impl< Coll, typename >::type = std::reference_wrapper<Coll>

Definition at line 292 of file ContainerMeta.h.

Member Function Documentation

template<typename Coll, typename = void>
static auto util::details::make_collection_reference_impl< Coll, typename >::make ( Coll &  coll)
inlinestatic

Definition at line 293 of file ContainerMeta.h.

293 { return std::ref(coll); }

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