I\'m using a std::tuple and defined a class enum to somehow \"naming\" each of the tuple\'s fields, forgetting about their actual indexes.
std::tuple
So instead o
My solution is to use:
namespace Something{enum class Something {MY_INDEX_NAME = 0,OTHER_INDEX_NAME};};