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
In the similar, Node.JS oriented library microtask, one can pass arguments in to a function. This would be a nice feature to have in greenlet too.
The text was updated successfully, but these errors were encountered:
Hiya! I'm not sure I follow - would this be different from Greenlet's current support for calling arguments?
const foo = greenlet((a, b, c) => [a, b, c]); await foo(1, 2, 3) // [1,2,3]
In the similar, Node.JS oriented library microtask, one can pass arguments in to a function. This would be a nice feature to have in greenlet too.
The text was updated successfully, but these errors were encountered: