19namespace mimicpp::call::detail
21 template <
typename... Args, std::size_t... indices>
23 constexpr bool is_equal_param_list(
24 const std::tuple<std::reference_wrapper<Args>...>& lhs,
25 const std::tuple<std::reference_wrapper<Args>...>& rhs,
26 const std::index_sequence<indices...>
32 std::get<indices>(lhs).get())
34 std::get<indices>(rhs).get())));
54 return lhs.fromCategory == rhs.fromCategory
55 && lhs.fromConstness == rhs.fromConstness
56 && detail::is_equal_param_list(lhs.args, rhs.args, std::index_sequence_for<Args...>{})