Public Types | Public Member Functions | Public Attributes | List of all members
custom::collection< T > Struct Template Reference

Public Types

using impl = std::vector< T >
 
using const_iterator = typename impl::const_iterator
 
using value_type = typename impl::value_type
 

Public Member Functions

const_iterator cbegin () const
 

Public Attributes

impl v
 

Detailed Description

template<typename T>
struct custom::collection< T >

Definition at line 12 of file set_ptr_customization_t.cc.

Member Typedef Documentation

template<typename T >
using custom::collection< T >::const_iterator = typename impl::const_iterator

Definition at line 14 of file set_ptr_customization_t.cc.

template<typename T >
using custom::collection< T >::impl = std::vector<T>

Definition at line 13 of file set_ptr_customization_t.cc.

template<typename T >
using custom::collection< T >::value_type = typename impl::value_type

Definition at line 15 of file set_ptr_customization_t.cc.

Member Function Documentation

template<typename T >
const_iterator custom::collection< T >::cbegin ( ) const
inline

Definition at line 17 of file set_ptr_customization_t.cc.

18  {
19  return v.cbegin();
20  }

Member Data Documentation

template<typename T >
impl custom::collection< T >::v

Definition at line 21 of file set_ptr_customization_t.cc.


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