* @details This will visit every object, but assumes each object is the same type. This can reduce the deeply nested visit calls. This will return a function that will take the visitor callback. So it will be called with `visit_all(xs...)([](auto... ys) {})` where `xs...` and `ys...` are the same number of parameters.
*
* @param x A raw data object
* @param xs Many raw data objects
* @return A function to be called with the visitor
*/
template<classT,class...Ts>
autovisit_all(T&&x,Ts&&...xs)
{
...
...
@@ -104,9 +123,8 @@ auto visit_all(T&& x, Ts&&... xs)