LLVM 19.0.0git
Public Types | Public Member Functions | List of all members
llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size > Class Template Reference

#include "llvm/ADT/EnumeratedArray.h"

Public Types

using iterator = ValueType *
 
using const_iterator = const ValueType *
 
using const_reverse_iterator = std::reverse_iterator< const_iterator >
 
using reverse_iterator = std::reverse_iterator< iterator >
 
using value_type = ValueType
 
using reference = ValueType &
 
using const_reference = const ValueType &
 
using pointer = ValueType *
 
using const_pointer = const ValueType *
 

Public Member Functions

 EnumeratedArray ()=default
 
 EnumeratedArray (ValueType V)
 
 EnumeratedArray (std::initializer_list< ValueType > Init)
 
const ValueTypeoperator[] (Enumeration Index) const
 
ValueTypeoperator[] (Enumeration Index)
 
IndexType size () const
 
bool empty () const
 
iterator begin ()
 
const_iterator begin () const
 
iterator end ()
 
const_iterator end () const
 
reverse_iterator rbegin ()
 
const_reverse_iterator rbegin () const
 
reverse_iterator rend ()
 
const_reverse_iterator rend () const
 

Detailed Description

template<typename ValueType, typename Enumeration, Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
class llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >

Definition at line 26 of file EnumeratedArray.h.

Member Typedef Documentation

◆ const_iterator

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
using llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::const_iterator = const ValueType *

Definition at line 29 of file EnumeratedArray.h.

◆ const_pointer

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
using llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::const_pointer = const ValueType *

Definition at line 38 of file EnumeratedArray.h.

◆ const_reference

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
using llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::const_reference = const ValueType &

Definition at line 36 of file EnumeratedArray.h.

◆ const_reverse_iterator

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
using llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::const_reverse_iterator = std::reverse_iterator<const_iterator>

Definition at line 31 of file EnumeratedArray.h.

◆ iterator

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
using llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::iterator = ValueType *

Definition at line 28 of file EnumeratedArray.h.

◆ pointer

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
using llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::pointer = ValueType *

Definition at line 37 of file EnumeratedArray.h.

◆ reference

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
using llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::reference = ValueType &

Definition at line 35 of file EnumeratedArray.h.

◆ reverse_iterator

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
using llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::reverse_iterator = std::reverse_iterator<iterator>

Definition at line 32 of file EnumeratedArray.h.

◆ value_type

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
using llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::value_type = ValueType

Definition at line 34 of file EnumeratedArray.h.

Constructor & Destructor Documentation

◆ EnumeratedArray() [1/3]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::EnumeratedArray ( )
default

◆ EnumeratedArray() [2/3]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::EnumeratedArray ( ValueType  V)
inline

Definition at line 41 of file EnumeratedArray.h.

References Size.

◆ EnumeratedArray() [3/3]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::EnumeratedArray ( std::initializer_list< ValueType Init)
inline

Definition at line 46 of file EnumeratedArray.h.

References assert(), and Size.

Member Function Documentation

◆ begin() [1/2]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
iterator llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::begin ( )
inline

Definition at line 66 of file EnumeratedArray.h.

◆ begin() [2/2]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
const_iterator llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::begin ( ) const
inline

Definition at line 67 of file EnumeratedArray.h.

◆ empty()

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
bool llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::empty ( ) const
inline

Definition at line 64 of file EnumeratedArray.h.

References llvm::size().

◆ end() [1/2]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
iterator llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::end ( )
inline

Definition at line 69 of file EnumeratedArray.h.

References llvm::size().

◆ end() [2/2]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
const_iterator llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::end ( ) const
inline

Definition at line 70 of file EnumeratedArray.h.

References llvm::size().

◆ operator[]() [1/2]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
ValueType & llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::operator[] ( Enumeration  Index)
inline

Definition at line 58 of file EnumeratedArray.h.

References Size.

◆ operator[]() [2/2]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
const ValueType & llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::operator[] ( Enumeration  Index) const
inline

Definition at line 53 of file EnumeratedArray.h.

References assert(), and Size.

◆ rbegin() [1/2]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
reverse_iterator llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::rbegin ( )
inline

Definition at line 72 of file EnumeratedArray.h.

◆ rbegin() [2/2]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
const_reverse_iterator llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::rbegin ( ) const
inline

Definition at line 73 of file EnumeratedArray.h.

◆ rend() [1/2]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
reverse_iterator llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::rend ( )
inline

Definition at line 76 of file EnumeratedArray.h.

◆ rend() [2/2]

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
const_reverse_iterator llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::rend ( ) const
inline

Definition at line 77 of file EnumeratedArray.h.

◆ size()

template<typename ValueType , typename Enumeration , Enumeration LargestEnum = Enumeration::Last, typename IndexType = int, IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
IndexType llvm::EnumeratedArray< ValueType, Enumeration, LargestEnum, IndexType, Size >::size ( ) const
inline

Definition at line 63 of file EnumeratedArray.h.

References Size.


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