i went though several Haskell learning examples but i could not figure out how to write user defined higher order functions in Haskell
if we are taking a parameter as a function how the type of the function id defined?
|
i went though several Haskell learning examples but i could not figure out how to write user defined higher order functions in Haskell if we are taking a parameter as a function how the type of the function id defined? |
|||||
|
|
Let's use the function First, you need a function. Any function is OK, so the type of the first argument is
And is defined like this:
Does this help you to understand the concept of high order functions? |
|||
|
|
|
Don't concern yourself with types just yet. Ask the compiler, it will tell you the types. With some practice you will be able to see the types almost as well as the compiler [grin]. Here we define two very simple higher-order functions,
You can see that You can try to use these higher-order functions on some regular functions.
Ans some funky advanced stuff:
Do you understand what's going on in the last two examples? |
|||
|
|