In F# what does the >> operator mean?
It’s the function composition operator. More info on Chris Smith’s blogpost. Introducing the Function Composition operator (>>): let inline (>>) f g x = g(f x) Which reads as: given two functions, f and g, and a value, x, compute the result of f of x and pass that result to g. The interesting thing … Read more