Please enable JavaScript.
Coggle requires JavaScript to display documents.
f sharp (data (primitive types (type conversion (float "3.14"
…
f sharp
-
functions
composition
composes two functions into one which takes output of the first one and pipes it to the second one
val >> : (a' -> b') -> (b' -> c') -> (a' -> c')
-
-
piping
passing the output of one function as a parameter to another
let add x y = x + y
let sub x y = x - y
add 5 7 |> sub 3
-
-
-