A real F# noob question, but what is |> called and what does it do?
|
It's called the forward pipe operator. It pipes the result of one function to another. The Forward pipe operator is simply defined as:
And has a type signature:
Which resolves to: given a generic type 'a, and a function which takes an 'a and returns a 'b, then return the application of the function on the input. You can read more detail about how it works in an article here. |
|||
|
I usually refer to @LBushkin already gave a great answer, so I'll just add a couple of observations that may be also interesting. Obviously, the pipelining operator got it's name because it can be used for creating a pipeline that processes some data in several steps. The typical use is when working with lists:
This gives the result [0; 9; 36; 81]. Also, the operator is left-associative which means that the expression Finally, I find it quite interesting that pipelining operaor in many cases corresponds to method chaining from object-oriented langauges. For example, the previous list processing example would look like this in C#:
This may give you some idea about when the operator can be used if you're comming fromt the object-oriented background (although it is used in many other situations in F#). |
|||
|
|
|
As far as F# itself is concerned, the name is op_PipeRight (although no human would call it that). I pronounce it "pipe", like the unix shell pipe. The spec is useful for figuring out these kinds of things. Section 4.1 has the operator names. http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/manual/spec.html |
|||
|
|
|
Don't forget to check out the library reference docs: http://msdn.microsoft.com/en-us/library/ee353754(v=VS.100).aspx which list the operators. |
|||
|
|
>>operator) and stackoverflow.com/questions/104618/what-does-mean-in-f (for->'operator') – Benjol Apr 14 '10 at 5:01