Saved Bookmarks
| 1. |
What Is Function Composition And Pipelining In F#? |
|
Answer» In F#, functions can be composed from other functions. It is a process of composing in which a function represents the application of TWO composed functions. F# function pipelining ALLOWS us to call functions in chain. Pipelining operator takes a function and an ARGUMENT as OPERANDS and returns a value. In F#, functions can be composed from other functions. It is a process of composing in which a function represents the application of two composed functions. F# function pipelining allows us to call functions in chain. Pipelining operator takes a function and an argument as operands and returns a value. |
|