21namespace seqan3::pack_traits::detail
30template <
typename query_t,
typename... pack_t>
34 return ((std::is_same_v<query_t, pack_t> ?
false : ++
i) && ...) ? -1 :
i;
43template <
template <
typename>
typename pred_t,
typename...
pack_t>
59 if constexpr (
idx == 0)
61 else if constexpr (
idx > 0)
97 if constexpr (
idx ==
sizeof...(pack2_t) + 1)
99 else if constexpr (
idx == 0)
142template <
typename...
pack_t>
143inline constexpr size_t size =
sizeof...(pack_t);
161inline constexpr ptrdiff_t
count = (std::is_same_v<query_t, pack_t> + ... + 0);
201template <
template <
typename>
typename pred_t,
typename...
pack_t>
243template <ptrdiff_t
idx,
typename...
pack_t>
244 requires (
idx >= 0 &&
idx <
sizeof...(pack_t)) || (-
idx <=
sizeof...(pack_t))
260template <
typename...
pack_t>
261 requires (
sizeof...(pack_t) > 0)
280template <
typename...
pack_t>
281 requires (
sizeof...(pack_t) > 0)
303template <
typename...
pack_t>
304 requires (
sizeof...(pack_t) > 0)
324template <
template <
typename>
typename trait_t,
typename...
pack_t>
347template <ptrdiff_t
i,
typename...
pack_t>
349using take =
typename decltype(detail::split_after<i, pack_t...>(
type_list<>{}))::first_type;
365template <ptrdiff_t
i,
typename...
pack_t>
367using drop =
typename decltype(detail::split_after<i, pack_t...>(
type_list<>{}))::second_type;
383template <ptrdiff_t
i,
typename...
pack_t>
401template <ptrdiff_t
i,
typename...
pack_t>
419template <ptrdiff_t
i,
typename...
pack_t>
A "pretty printer" for most SeqAn data structures and related types.
Definition debug_stream_type.hpp:79
decltype(detail::replace_at< replace_t, i, pack_t... >(std::make_index_sequence< size< pack_t... > >{})) replace_at
Replace the type at the given index with the given type.
Definition type_pack/traits.hpp:440
type_list< tail_t... > drop_front()
Implementation for seqan3::pack_traits::drop_front.
typename decltype(detail::drop_front< pack_t... >())::type drop_front
Return a seqan3::type_list of all the types in the type pack, except the first.
Definition type_pack/traits.hpp:305
typename decltype((std::type_identity< pack_t >{},...))::type back
Return the last type from the type pack.
Definition type_pack/traits.hpp:282
constexpr ptrdiff_t find
Get the index of the first occurrence of a type in a pack.
Definition type_pack/traits.hpp:179
constexpr ptrdiff_t count
Count the occurrences of a type in a pack.
Definition type_pack/traits.hpp:161
typename decltype(detail::at< idx, pack_t... >())::type at
Return the type at given index from the type pack.
Definition type_pack/traits.hpp:245
constexpr ptrdiff_t find_if()
Implementation for seqan3::pack_traits::find_if.
Definition type_pack/traits.hpp:44
constexpr ptrdiff_t find()
Implementation for seqan3::pack_traits::find.
Definition type_pack/traits.hpp:31
decltype(detail::split_after< i, pack_t... >(type_list<>{})) split_after
Split a type pack into two parts returned as a pair of seqan3::type_list.
Definition type_pack/traits.hpp:421
auto at()
Implementation for seqan3::pack_traits::at.
Definition type_pack/traits.hpp:57
typename decltype(detail::front< pack_t... >())::type front
Return the first type from the type pack.
Definition type_pack/traits.hpp:262
typename decltype(detail::split_after< i, pack_t... >(type_list<>{}))::second_type drop
Return a seqan3::type_list of the types in the type pack, except the first n.
Definition type_pack/traits.hpp:367
constexpr size_t size
The size of a type pack.
Definition type_pack/traits.hpp:143
std::type_identity< head_t > front()
Implementation for seqan3::pack_traits::front.
typename decltype(detail::split_after< i, pack_t... >(type_list<>{}))::first_type take
Return a seqan3::type_list of the first n types in the type pack.
Definition type_pack/traits.hpp:349
constexpr ptrdiff_t find_if
Get the index of the first type in a pack that satisfies the given predicate.
Definition type_pack/traits.hpp:202
constexpr bool contains
Whether a type occurs in a pack or not.
Definition type_pack/traits.hpp:220
Namespace containing traits for working on type packs.
Type that contains multiple types.
Definition type_list.hpp:26
Provides seqan3::type_list.