Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
CxxBackports.hh
Go to the documentation of this file.
1//
2// MIT License
3// Copyright (c) 2020 Jonathan R. Madsen
4// Permission is hereby granted, free of charge, to any person obtaining a copy
5// of this software and associated documentation files (the "Software"), to deal
6// in the Software without restriction, including without limitation the rights
7// to use, copy, modify, merge, publish, distribute, sublicense, and
8// copies of the Software, and to permit persons to whom the Software is
9// furnished to do so, subject to the following conditions:
10// The above copyright notice and this permission notice shall be included in
11// all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED
12// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
13// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
15// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
16// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
17// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18//
19
20#pragma once
21
23
24#include <cstddef>
25#include <tuple>
26#include <type_traits>
27#include <utility>
28
29/// Backports of C++ language features for use with C++11 compilers
30
31namespace PTL
32{
33// Convenience wrappers
34template <typename T>
35using decay_t = typename std::decay<T>::type;
36
37template <bool B, typename T = void>
38using enable_if_t = typename std::enable_if<B, T>::type;
39
40/// Provision of tuple expansion to arguments
41namespace impl
42{
43//--------------------------------------------------------------------------------------//
44// Stores a tuple of indices. Used by tuple and pair, and by bind() to
45// extract the elements in a tuple.
46template <size_t... Indexes>
48{};
49
50// Concatenates two Index_tuples.
51template <typename Itup1, typename Itup2>
52struct Itup_cat;
53
54template <size_t... Ind1, size_t... Ind2>
55struct Itup_cat<Index_tuple<Ind1...>, Index_tuple<Ind2...>>
56{
57 using __type = Index_tuple<Ind1..., (Ind2 + sizeof...(Ind1))...>;
58};
59
60// Builds an Index_tuple<0, 1, 2, ..., NumT-1>.
61template <size_t NumT>
63: Itup_cat<typename Build_index_tuple<NumT / 2>::__type,
64 typename Build_index_tuple<NumT - NumT / 2>::__type>
65{};
66
67template <>
69{
71};
72
73template <>
75{
77};
78
79/// Class template integer_sequence
80template <typename Tp, Tp... Idx>
82{
83 using value_type = Tp;
84 static constexpr size_t size() noexcept { return sizeof...(Idx); }
85};
86
87template <typename Tp, Tp NumT, typename ISeq = typename Build_index_tuple<NumT>::__type>
89
90template <typename Tp, Tp NumT, size_t... Idx>
91struct Make_integer_sequence<Tp, NumT, Index_tuple<Idx...>>
92{
93 static_assert(NumT >= 0, "Cannot make integer sequence of negative length");
94
96};
97
98/// Alias template make_integer_sequence
99template <typename Tp, Tp NumT>
101
102/// Alias template index_sequence
103template <size_t... Idx>
104using index_sequence = integer_sequence<size_t, Idx...>;
105
106/// Alias template make_index_sequence
107template <size_t NumT>
109
110template <typename FnT, typename TupleT, size_t... Idx>
111static inline auto
112apply(FnT&& _func, TupleT _args, impl::index_sequence<Idx...>)
113 -> decltype(std::forward<FnT>(_func)(std::get<Idx>(std::move(_args))...))
114{
115 // GCC 5.3 warns about unused variable _args when the index sequence is empty
116#if defined(__GNUC__) && (__GNUC__ < 6)
117 if(sizeof...(Idx) == 0)
118 {
119 ConsumeParameters(_args);
120 }
121#endif
122 return std::forward<FnT>(_func)(std::get<Idx>(std::move(_args))...);
123}
124
125//--------------------------------------------------------------------------------------//
126
127} // namespace impl
128
129//--------------------------------------------------------------------------------------//
130
131template <typename FnT, typename TupleT>
132static inline void
133apply(FnT&& _func, TupleT&& _args)
134{
135 using tuple_type = decay_t<TupleT>;
136 constexpr auto N = std::tuple_size<tuple_type>::value;
137 impl::apply(std::forward<FnT>(_func), std::forward<TupleT>(_args),
139}
140
141} // namespace PTL
#define N
Definition crc32.c:57
Provision of tuple expansion to arguments.
integer_sequence< size_t, Idx... > index_sequence
Alias template index_sequence.
make_integer_sequence< size_t, NumT > make_index_sequence
Alias template make_index_sequence.
typename Make_integer_sequence< Tp, NumT >::__type make_integer_sequence
Alias template make_integer_sequence.
Backports of C++ language features for use with C++11 compilers.
Definition AutoLock.hh:255
void ConsumeParameters(Args &&...)
typename std::enable_if< B, T >::type enable_if_t
typename std::decay< T >::type decay_t
Index_tuple< Ind1...,(Ind2+sizeof...(Ind1))... > __type
integer_sequence< Tp, static_cast< Tp >(Idx)... > __type
Class template integer_sequence.
static constexpr size_t size() noexcept