-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
inline arg/ret #42
Comments
would be good, if this can be specifically switched on in the |
|
This would require a substantial amount of extra work. If you have many calls/streams you want to inline, you need as many How about something we supported earlier:
This has the disadvantage though that we must also support this:
which may be too much magic? |
|
nice :) |
its still tricky though, because I could now write |
If a call has very few arguments / return values, it would be neat to inline them, so that a separate struct is not needed. Example:
would now produce the func
which must be called like this
but if one could inline the arguments:
the call looks much neater imho
The text was updated successfully, but these errors were encountered: