Is there a possibility to check if something is a partial function in Clojure?
It would be best to have something like (partial? (partial + 10)) ?
Thanks in advance
|
No, because functions created by partial are just "normal" functions. You could however use some metadata for it, like this:
Haven't really thought through the consequences of this approach though... Kotarak came up with a nicer solution that works, but not always. For example take this:
This works:
with string/split being the split function from clojure.string (1.3) or clojure.contrib.str-utils2 (1.2). |
|||||||
|
|
|
You can with a hack.
EDIT: Fixed according to Michiel's comment. That you have to know the innards of |
||||
|
|
|
Functions created by partial are just normal functions, but if you are hell-bent on it, maybe something like this could help? :
Disclaimer: I don't know if something like this is fool-proof. |
|||
|
|
#()? – viebel Feb 27 '12 at 14:25inc,(partial + 1)or#(+ 1 %)? – jbear Feb 29 '12 at 4:18