I'm new to Haskell and FP and a bit uncomfortable with syntax. In the following code what does the => denote? And also (Num a, Ord a) ?
loop :: (Num a, Ord a) => a -> (t -> t) -> t -> t
|
|
This is a typeclass constraint; You can think of typeclasses as basically similar to OOP interfaces (but they're not the same thing!) — they encapsulate a set of definitions which any instance must support, and generic code can be written using these definitions. For instance, For more information on typeclasses, see this introduction from Learn You a Haskell. |
||||
|
|
|
So you can think of For more on typeclasses see http://www.learnyouahaskell.com/types-and-typeclasses |
|||
|
|
|
One way to think about it is that Any function that makes use of a function with dictionary inputs must also have the same dictionary inputs.
However, you do not have to explicitly pass these dictionaries around. Haskell will take care of that for you, assuming there is a dictionary available. You can create a dictionary with a typeclass instance.
This creates a dictionary for the |
|||||
|
|
On the left hand side of the In the example you give, it means that |
|||
|
|