We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's say I looking for any function that consumes a Seed, but I don't know what else I may need to provide for the zero or more additional arguments.
Seed
An example of a desired result is:
variant :: forall a. Seed -> Gen a -> Gen a
But variant is not found by:
variant
Seed -> _ Seed -> a
Or even:
Seed -> _ -> _ Seed -> a -> b Seed -> f a -> f a
This is the most generic option that works:
Seed -> _ a -> _ a
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Let's say I looking for any function that consumes a
Seed
, but I don't know what else I may need to provide for the zero or more additional arguments.An example of a desired result is:
But
variant
is not found by:Or even:
This is the most generic option that works:
The text was updated successfully, but these errors were encountered: