I am a novice to Haskell. I am trying and failing to grok the traverse function from Data.Traversable module. I am unable to see its point. Since I come from an imperative background, can someone please explain it to me in terms of an imperative loop? A pseudo-code would be much appreciated. Thanks.
|
|
||||
|
|
|
Take a look at the example from the
The
It rebuilds the entire tree, applying
The The
If you would implement this in an impure language,
Implementing it like this limits you to the effects that the language allows though. If you f.e. want non-determinism (which the list instance of Applicative models) and your language doesn't have it built-in, you're out of luck. |
|||||||||||||||
|
|
I think it's easiest to understand in terms of
You can also think of So You can also compare it to
So you can see that the key difference between A simple example of its usage is using a list as the traversable structure, and
Of course, in this case it is equivalent to |
||||
|
|
|
Let's use
So if a number is even, we get half of it (inside a
But...
The reason is that the Another example:
This function generates a list of lenght x with the content x, e.g. We get the partial results of "All combinations" of
|
|||||||||||||||
|
|
With the Trabersable typeclass, you could probably write your algorithms more independant and versatile. But my experience says, that Traversable is usually only used to simply glue algorithms to existing datastructures. It is quite nice not to need to write similar functions for different datatypes qualified, too. |
||||
|
|