qxLib
Classes | Functions
tuple_utils.h File Reference

Contains utils for working with std::tuple. More...

#include <tuple>
#include <type_traits>

Go to the source code of this file.

Classes

struct  qx::tuple::join<... >
 Appends types or another tuple to tuple. More...
 
struct  qx::tuple::join< std::tuple< first_pack_t... >, std::tuple< second_pack_t... > >
 
struct  qx::tuple::join< std::tuple< first_pack_t... >, second_t, optional_args_t... >
 
struct  qx::tuple::details::remove_single<... >
 
struct  qx::tuple::details::remove_single< target_t, std::tuple< pack_t... > >
 
struct  qx::tuple::details::remove_single< target_t, std::tuple< parameter_t, pack_t... > >
 
struct  qx::tuple::remove<... >
 Removes all types from the second argument from the first tuple. More...
 
struct  qx::tuple::remove< std::tuple< types_t... >, std::tuple<> >
 
struct  qx::tuple::remove< std::tuple< types_t... >, std::tuple< target_t, remaining_targets_t... > >
 
struct  qx::tuple::details::contains< T, std::tuple<> >
 
struct  qx::tuple::details::contains< T, std::tuple< U, args_t... > >
 
struct  qx::tuple::details::contains< T, std::tuple< T, args_t... > >
 
struct  qx::tuple::transform< std::tuple< args_t... >, transformation_t >
 
struct  qx::tuple::index< std::tuple< T, args_t... >, T >
 
struct  qx::tuple::index< std::tuple< U, args_t... >, T >
 

Functions

template<class tuple_t , class type_callable_t >
constexpr void qx::tuple::iterate (const type_callable_t &callable)
 Iterate over a tuple with a callable that receives a type along with a its index. More...
 

Detailed Description

Contains utils for working with std::tuple.

Author
Khrapov
Date
16.06.2023

Definition in file tuple_utils.h.

Function Documentation

◆ iterate()

template<class tuple_t , class type_callable_t >
constexpr void qx::tuple::iterate ( const type_callable_t &  callable)
constexpr

Iterate over a tuple with a callable that receives a type along with a its index.

Template Parameters
tuple_t- std::tuple<> type
type_callable_t- callable type
Parameters
callable- callable object
using tuple_type = std::tuple<float, int, std::string, unsigned, size_t>;
qx::tuple::iterate<tuple_type>(
[]<class T, size_t I>()
{
// ...
});

Definition at line 197 of file tuple_utils.h.