Replies: 1 comment 5 replies
-
As is, the macro relies on procedure types to have identified (read, named) parameters. This is a separate topic, but I'm of the opinion that procedure types should not have identified parameters. They don't contribute to type equality, and having them do would complicate the type system and implementation, as now there needs to be a distinction made between "proc type with identified parameters" and "proc type with unidentified parameters", with the former having to have a subtype relationship with the latter, etc. I'd like for |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Presently if one wants to use anonymous procedures they either have to write the entire definition out or use
sugar.=>
. This is proposing a new macro to be added to the stdlib and heavily encouraged to be used. Solving the following issues:The basis for this would be roughly
Which would allow:
Beta Was this translation helpful? Give feedback.
All reactions