| 93 | /** convert index for parameter pack*/ |
| 94 | template<typename... IndicesTemplate> |
| 95 | int _Index(const int Index, IndicesTemplate... Indices) const |
| 96 | { |
| 97 | return Index + _Index(Indices...) * Size; |
| 98 | } |
| 99 | int _Index(const int Index) const |
| 100 | { |
| 101 | if(Index >= _Size) |
nothing calls this directly
no outgoing calls
no test coverage detected