weak_dispatch<D>::operator()
// (1)
using D::operator();
// (2)
template <class... Args>
[[noreturn]] /* see below */ operator()(std::nullptr_t, Args&&...) const;
(1)Forwards an invocation toDif applicable.(2)Throwsnot_implemented. The return type is convertible to any type to match a arbitrary convention.