2015-04-20 17:13:14 +10:00
|
|
|
/*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
2018-03-15 23:48:21 +11:00
|
|
|
* Copyright 2017-2018 Danny Robson <danny@nerdcruft.net>
|
2015-04-20 17:13:14 +10:00
|
|
|
*/
|
|
|
|
|
2018-03-15 23:48:21 +11:00
|
|
|
#ifndef CRUFT_UTIL_VARIADIC_HPP
|
|
|
|
#define CRUFT_UTIL_VARIADIC_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <utility>
|
2018-03-23 16:40:30 +11:00
|
|
|
#include <tuple>
|
2018-03-15 23:48:21 +11:00
|
|
|
|
2015-04-20 17:13:14 +10:00
|
|
|
|
2017-06-07 16:31:55 +10:00
|
|
|
namespace util::variadic {
|
2018-03-15 23:48:21 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// do nothing with a set of parameters.
|
|
|
|
///
|
|
|
|
/// useful for temporarily silencing unused argument warnings in parameter
|
|
|
|
/// packs, or for avoiding assignment of [[gnu::warn_unused_result]] to a
|
|
|
|
/// temporary value we'd just cast to void anyway (GCC#66425).
|
|
|
|
///
|
|
|
|
/// it is guaranteed that this function will never be defined out in
|
|
|
|
/// debug/release/whatever builds. so it is safe to use to guarantee
|
|
|
|
/// parameter evaluation.
|
|
|
|
template <typename ...Args>
|
|
|
|
void
|
|
|
|
ignore (const Args&...) noexcept ((std::is_nothrow_destructible_v<Args> && ...))
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2018-07-04 14:04:56 +10:00
|
|
|
namespace detail {
|
|
|
|
// using the strategy of discarding assignment from:
|
|
|
|
// https://attugit.github.io/2015/02/Accessing-nth-element-of-parameter-pack/
|
|
|
|
struct discard {
|
|
|
|
template <typename ArgsT>
|
|
|
|
constexpr discard (ArgsT&&...) { ; }
|
|
|
|
};
|
|
|
|
|
|
|
|
template <size_t>
|
|
|
|
using discard_n = discard;
|
|
|
|
|
|
|
|
template <std::size_t N, typename = std::make_index_sequence<N>>
|
|
|
|
struct getter;
|
|
|
|
|
|
|
|
template <std::size_t N, std::size_t... ignore>
|
|
|
|
struct getter<N, std::index_sequence<ignore...>> {
|
|
|
|
template <typename ValueT, typename ...TailT>
|
|
|
|
decltype(auto)
|
|
|
|
operator() (discard_n<ignore>..., ValueT &&val, TailT&&...) const
|
|
|
|
{
|
|
|
|
return std::forward<ValueT> (val);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-03-15 23:48:21 +11:00
|
|
|
/// Returns the argument at index `IndexV', as if we called:
|
|
|
|
/// std::get<N> (std::make_tuple (...))
|
2018-07-04 14:04:56 +10:00
|
|
|
template <size_t IndexV, typename ...ArgsT>
|
|
|
|
decltype(auto)
|
|
|
|
get (ArgsT&& ...args)
|
2018-03-15 23:48:21 +11:00
|
|
|
{
|
2018-07-04 14:04:56 +10:00
|
|
|
return detail::getter<IndexV> {}(std::forward<ArgsT> (args)...);
|
2018-03-15 23:48:21 +11:00
|
|
|
}
|
2018-03-23 16:40:30 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// returns a tuple of all arguments that satisfy the trait QueryT
|
|
|
|
template <template <typename> class QueryT>
|
|
|
|
auto filter () { return std::tuple {}; }
|
|
|
|
|
|
|
|
|
|
|
|
/// returns a tuple of all arguments that satisfy the trait QueryT
|
|
|
|
template <
|
|
|
|
template <typename> class QueryT,
|
|
|
|
typename HeadT,
|
|
|
|
typename ...ArgsT
|
|
|
|
>
|
|
|
|
auto
|
|
|
|
filter (HeadT &&head, ArgsT &&...args)
|
|
|
|
{
|
|
|
|
if constexpr (QueryT<HeadT>::value)
|
|
|
|
return std::tuple_cat (
|
|
|
|
std::tuple (std::forward<HeadT> (head)),
|
|
|
|
filter<QueryT> (std::forward<ArgsT> (args)...)
|
|
|
|
);
|
|
|
|
else
|
|
|
|
return filter<QueryT> (std::forward<ArgsT> (args)...);
|
|
|
|
}
|
|
|
|
};
|
2015-04-20 17:13:14 +10:00
|
|
|
|
2018-03-15 23:48:21 +11:00
|
|
|
|
2015-04-20 17:13:14 +10:00
|
|
|
#endif
|