F# tips weekly #13: Operators
Using operators like =, +, && or |> is daily bread of writing F#. Let's look at how they work under the hood.
Operator is a function
Every operator can be used as standard function by enclosing it in parentheses, for example
(+) 1 2
is the same as
1...
jindraivanek.hashnode.dev3 min read