I have seen the clojure symbol -> used in many places, but I am unsure as to what this symbol is called and does, or even whether it is part of standard clojure. Could someone explain this to me?
|
|
|
'->' is a macro. The best way to describe it, I think, is in the example of the "dot special form" for which it serves the purpose of making the code more terse and legible as is indicated on the clojure.org website's explanation of the The Dot special form
expands to:
but is easier to write, read, and understand. See also the -> macro which can be used similarly:
There is also 'doto'. Let's say you have a single object on which you'd like to call several consecutive setters. You could use 'doto'.
In the above example the setters don't return anything, making 'doto' the appropriate choice. The -> would not work in place of 'doto' unless the setters returned 'this'. So, those are some techniques related to the -> macro. I hope that helps explain not only what they do, but also why they exist. |
||||
|
The accepted answer is misleading. -> uses the result of a function call and send it, in sequence, to the next function call. So, the easier example would be:
Returns 5, because it sends 2, to the next function call (+ 3) Building up on this,
Returns -2. We keep the result of the first call, (+ 3) and send it to the second call (- 7). As noted by @bending, the accepted answer would have been better showing the doto macro.
|
|||||||||
|
|
It's a way to write code left to right, instead of inside out, e.g.
becomes
You might want to read the source, it's here. EDIT: Fixed my confusion of |
|||||||||||
|
|
It did not fully get what -> (thrush or thread) did until I visualized it like this:
Here are some examples:
|
|||
|
|
|
It's called the thrush operator. It's best explained here. |
|||||
|