Added etl::index_of_type as a complement to etl::nth_type

This commit is contained in:
John Wellbelove 2025-03-16 19:06:34 +00:00
parent 34f536548f
commit ebc588a477
2 changed files with 138 additions and 0 deletions

View File

@ -0,0 +1,80 @@
/******************************************************************************
The MIT License(MIT)
Embedded Template Library.
https://github.com/ETLCPP/etl
https://www.etlcpp.com
Copyright(c) 2025 John Wellbelove
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files(the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions :
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/
#ifndef ETL_INDEX_OF_TYPE_INCLUDED
#define ETL_INDEX_OF_TYPE_INCLUDED
#include "platform.h"
#include "static_assert.h"
#include "integral_limits.h"
namespace etl
{
#if ETL_USING_CPP11
//***************************************************************************
/// Defines a no-position constant.
//***************************************************************************
static ETL_CONSTANT size_t index_of_type_npos = etl::integral_limits<size_t>::max;
//***************************************************************************
/// Finds the index of a type in a variadic type parameter.
//***************************************************************************
template <typename T, typename... TTypes>
struct index_of_type;
//***************************************************************************
/// Finds the index of a type in a variadic type parameter.
//***************************************************************************
template <typename T, typename T1, typename... TRest>
struct index_of_type<T, T1, TRest...> : public etl::integral_constant<size_t, etl::is_same<T, T1>::value ? 0 :
(etl::index_of_type<T, TRest...>::value == etl::index_of_type_npos ? etl::index_of_type_npos :
etl::index_of_type<T, TRest...>::value + 1)>
{
};
//***************************************************************************
/// Finds the index of a type in a variadic type parameter.
/// No types left.
//***************************************************************************
template <typename T>
struct index_of_type<T> : public etl::integral_constant<size_t, etl::index_of_type_npos>
{
};
#if ETL_USING_CPP17
//***************************************************************************
/// Finds the index of a type in a variadic type parameter.
//***************************************************************************
template <typename T, typename... TTypes>
inline constexpr size_t index_of_type_v = etl::index_of_type<T, TTypes...>::value;
#endif
#endif
}
#endif

View File

@ -0,0 +1,58 @@
/******************************************************************************
The MIT License(MIT)
Embedded Template Library.
https://github.com/ETLCPP/etl
https://www.etlcpp.com
Copyright(c) 2025 John Wellbelove
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files(the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions :
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/
#include "unit_test_framework.h"
#include "etl/index_of_type.h"
#include <type_traits>
namespace
{
SUITE(test_index_of_type)
{
//*************************************************************************
TEST(test_index_of_type)
{
CHECK_EQUAL(0, (etl::index_of_type<int, int, long, double>::value));
CHECK_EQUAL(1, (etl::index_of_type<long, int, long, double>::value));
CHECK_EQUAL(2, (etl::index_of_type<double, int, long, double>::value));
CHECK_EQUAL(etl::index_of_type_npos, (etl::index_of_type<float, int, long, double>::value));
}
//*************************************************************************
#if ETL_USING_CPP17
TEST(test_index_of_type_v)
{
CHECK_EQUAL(0, (etl::index_of_type_v<int, int, long, double>));
CHECK_EQUAL(1, (etl::index_of_type_v<long, int, long, double>));
CHECK_EQUAL(2, (etl::index_of_type_v<double, int, long, double>));
CHECK_EQUAL(etl::index_of_type_npos, (etl::index_of_type_v<float, int, long, double>));
}
#endif
}
}