Press CTRL+C or CMD+C to copy the selected text and close this dialog.
Tweet
1 people like it. Like the snippet!
Function Composition Operator
1: 2: 3: 4: 5: 6: 7: 8:
let inline (+.) f g x = g(f x) let a = (*) 2 let b = (+) 1 let c = (/) 3 let d = (-) 4 let f = a +. b +. c +. d f 1 |> printfn "%i"