You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
static_assert(hud::is_nothrow_default_constructible_v<type_t>, "type_t() default constructor is throwable. compressed_tuple is not designed to allow throwable default constructible components");
97
96
}
98
97
99
98
/** Default constructor. Do not initializes content. */
@@ -127,26 +126,26 @@ namespace hud
127
126
}
128
127
129
128
/**
130
-
* Piecewise constructor forwarding a compressed_tuple of arguments.
131
-
* @tparam Args Types of the elements in the compressed_tuple used for construction.
132
-
* @param compressed_tuple Tuple of arguments to forward to the constructor of type_t.
129
+
* Piecewise constructor forwarding a tuple of arguments.
130
+
* @tparam Args Types of the elements in the tuple used for construction.
131
+
* @param tuple Tuple of arguments to forward to the constructor of type_t.
static_assert(hud::is_nothrow_constructible_v<type_t, Args...>, "type_t(Args&&...) constructor is throwable. pair is not designed to allow throwable constructible components");
152
151
}
@@ -278,25 +277,6 @@ namespace hud
278
277
structcompressed_tuples_cat_impl
279
278
: details::tuple::tuples_cat_impl<tuples_t...>
280
279
{
281
-
// using return_type = typename compressed_cat_tuples_arg<tuples_t...>::tuple_type;
282
-
// using element_index_seq = typename details::tuple::cat_element_index<hud::make_index_sequence_for<>, tuples_t...>::element_index_seq;
283
-
// using mask_index_seq = typename details::tuple::cat_mask_index<0, hud::make_index_sequence_for<>, tuples_t...>::mask_index_seq;
284
-
285
-
// /**
286
-
// * Constructs a tuple that is a concatenation of all tuples in the given "tuple of tulpes" in the same order.
287
-
// * @tparam tuple The tuple type of tuples to concatenate
288
-
// * @tparam element_indices List element index
289
-
// * @tparam mask_indices List index mask to match the element index hud::index_sequence
290
-
// * @param hud::index_sequence of element_indices
291
-
// * @param hud::index_sequence of mask_indices
292
-
// * @param tulpe The tuple of tulpes to concatenate
0 commit comments