That is, when you call a function with >1 arity with only one argument, it should, instead of displaying an error, curry that argument and return the resulting function with decreased arity. Is this possible to do using Lisp's macros?
|
|
In Scheme it's possible to curry a function using the
From Racket's documentation:
You could easily implement a macro which automatically uses
Now the following definition of
|
|||||
|
|
It's possible, but not easy if you want a useful result.
But there is a much more serious problem, at the highlevel of what you want to do. The thing is that variable-arity functions just don't play well with automatic currying. For example, take an expression like: (+ 1 2 3) How would you decide if this should be called as is, or whether it should be translated to
In this case you can split a
Here you have Some of these issues can be resolved by deciding that each "real" application must have parens for it, so a |
|||
|
|
|
+1 for "arity". I've never encountered that word before. Lisp already has Functional Currying:
http://cl-cookbook.sourceforge.net/functions.html Here's what I was reading about Lisp macros: http://www.apl.jhu.edu/~hall/Lisp-Notes/Macros.html It's possible to implement this in pure Lisp. It's possible to implement it using macros as well, however it seems as though macros would make it more confusing for very basic stuff. |
|||||
|
|
The short answer is yes, though not easily. you could implament this as a macro that wrapped every call in |
|||
|
|
|
As noted by Alex W, the Common Lisp Cookbook does give an example of a "curry" function for Common Lisp. The specific example is further down on that page:
Auto-currying shouldn't be that hard to implement, so I took a crack at it. Note that the following isn't extensively tested, and doesn't check that there aren't too many args (the function just completes when there are that number or more):
Seems to work, though:
A primitive (doesn't handle full lambda lists properly, just simple parameter lists) version of some macro syntax sugar over the above:
Seems to work, though the need for funcall is still annoying:
|
|||
|
|
|
Sure, you just have to decide exact semantics for your language, and then implement your own loader which will translate your source files into the implementation language. You could e.g. translate every user function call You will also need to define your own primitives, turning the varargs functions like e.g. That's what I meant by "deciding ... semantics for your language". The loader can be as simple as wrapping the file contents into a call to a macro - which you would then have to implement, as per your question. |
|||
|
|