You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespacesr= scelta::recursive;
using _ = sr::placeholder;
using builder = sr::builder<std::variant<int, std::vector<_>>>;
using type = sr::type<builder>;
Currently, to resolve the vector, the user has to say:
using vector_type = sr::resolve<builder, std::vector<_>>;
It would probably be nicer to say:
using vector_type = sr::resolve_nth<builder, 1>;
The text was updated successfully, but these errors were encountered:
Currently, to resolve the vector, the user has to say:
using vector_type = sr::resolve<builder, std::vector<_>>;
It would probably be nicer to say:
The text was updated successfully, but these errors were encountered: