Jim wrote:

> or convert it to a macro and it should work as you hoped :)
> 
>   (defmacro stringify [f]
>    `(-> ~f
>         var
>         meta
>        :name
>         str))
> 
> HTH,

Cool! That is exactly what I was looking for!

Best,

EM

> 
> Jim
> 
> 
> On 27/08/13 13:26, Jim wrote:
>> On 27/08/13 13:13, Jim wrote:
>>> (defn stringify [func]
>>>  (-> func
>>>    var
>>>    meta
>>>   :name
>>>    str))
>>
>> I'm sorry this won't work...try this:
>>
>> (defn stringify [fvar]
>>  (-> fvar
>>    meta
>>   :name
>>    str))
>>
>> and pass in the var object like this:
>>
>> (stringify (var some-func))
>>
>> OR
>>
>> (stringify #'some-func)
>>
>> btw, you will only get the name not the namespace it belongs in...
>>
>> Jim
> 


-- 
-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to