Learning Clojure I came across code like below:
=> (defrecord Person [name, age])
user.Person
=> (->Person \"john\" 40)
#user.Person{:name \"john\", :ag
Obviously not in your specific example, but in the general context this operator ->
is called the threading operator and is considered one of the thrush operators. Along with its cousin the ->>
operator, these operators are quite useful when you need to have code appear more clearly, especially when feeding the output of functions as parameters to another function. Both operators are macros. Here's another SO post concerning both operators.
I have not yet had cause to use the ->
, but did need ->>
to make sense of code that needed to compute intermediate values and put them all into one function call.
Here is another explanation.