|
DotNetDupe 4.0.6
C++17/20 Implementation of the .NET Base Class Library (BCL)
|
Helper wrapper allowing random-access bracket indexing over std::initializer_list. More...
#include <Utils.h>
Public Member Functions | |
| _init_list_with_indexer (const std::initializer_list< T > &_list) | |
| Constructs a wrapper over the provided initializer list. | |
| T | operator[] (unsigned int index) |
| Accesses the element at the specified index. | |
Public Attributes | |
| const std::initializer_list< T > & | list |
| Reference to the wrapped initializer list. | |
Helper wrapper allowing random-access bracket indexing over std::initializer_list.
| T | The element type in the initializer list. |
|
inline |
Constructs a wrapper over the provided initializer list.
| _list | The initializer list to wrap. |
Definition at line 13 of file Utils.h.
References list.
Referenced by DotNetDupe::System::IO::Path::Combine().
|
inline |
| const std::initializer_list<T>& _init_list_with_indexer< T >::list |
Reference to the wrapped initializer list.
Definition at line 9 of file Utils.h.
Referenced by _init_list_with_indexer(), and operator[]().