19namespace seqan3::detail
26template <
typename... invocable_ts>
27struct multi_invocable : invocable_ts...
30 using invocable_ts::operator()...;
34template <
typename... invocable_ts>
35multi_invocable(invocable_ts...) -> multi_invocable<invocable_ts...>;