I wish to create a multi method which I call like this:
(defmethod some-method "some value"
[ a b ]
b)
: but which selects the function based only on the first paramter 'a'. How can I do this:
(defmulti some-method
WHAT GOES HERE?)
|
I wish to create a multi method which I call like this:
: but which selects the function based only on the first paramter 'a'. How can I do this:
|
||||
|
|
|
I didn't completely understand your question, but I think you want to dispatch only on one argument. You can do that like this, I think:
|
|||
|
|
|
Do you mean select the function based on the value of a? Then you just need
|
|||
|
|