Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Note: this is NOT about concurrency. This is about the thread macro.

I know that -> puts the object at the 2nd position and ->> puts the argument at the last position.

Now, I'm curious, much like the short hand notation of #( ... % ) for functions, is there a short hand notation for threads that lets me place the argument at arbitrary location?

The goal would be that instead of having a fixed location for the thread to run through ... I can write arbitrary forms, and insert %% at special places, and the %% is where the thread gets inserted.

Thanks!

share|improve this question
Thanks for the question. I've been wanting to ask that for ages. Sometimes I have to use (#(func-adaptor arg1 % arg2)) to get the effect I want with -> or ->>. – jbear May 11 '12 at 0:17

3 Answers

up vote 13 down vote accepted

The 'diamond wand' from Swiss Arrows library would do what you're asking for:

(-<> 0
 (* <> 5)
 (vector 1 2 <> 3 4))
; => [1 2 0 3 4]

That said, it isn't something you end up needing often (or ever in my Clojure experience)

share|improve this answer
6  
I like how these macros abuse the flexibility of clojure variable names – user1311390 Apr 9 '12 at 5:17

In case anyone else comes across this, there is a reason the provided macros exist, but an arbitrary placement one does not: the latter would lead to poor API design.

The -> macro places the argument in the first position. This corresponds to functions that work on some subject argument, e.g., conj, assoc.

The ->> macro places the argument in the last position. This corresponds to functions that work on sequences, e.g., map, reduce.

Design your APIs well, and you'll be less likely to need such a macro.

share|improve this answer
Well-reasoned, Alex. Though sometimes you need to thread data through functions that you didn't design. I guess one can always use a (#(f a1 % a3)) to get around it. – jbear May 11 '12 at 0:26

There was a library that provided this feature, but I forgot where. It might of been in the deprecated clojure-contrib. It was the -$> macro.

But you could derive one from clojure's core -> macro to make the one you're looking for:

(defmacro -$>
    ([x] x)
    ([x form] (if (seq? form)
                (with-meta (map #(if (= %1 '$) x %1) form) (meta form))
                (list form x)))
    ([x form & more] `(-$> (-$> ~x ~form) ~@more)))

And use $ to indicate the insertion point:

user=> (-$> 2 str (identity $) (println $))
2
nil

Technically, you could use multiple $ in one form. But this implementation suffers from expanding the same form multiple times (in exchange for simplicity).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.