In Eric Torreborre's blogpost on the paper Essence of the Iterator Pattern, he describes how the cartesian product of a traverse is also a traverse.
Can anyone show me an example of this using the scalaz library as I can't figure it out. Let's say the problem is that, for a List[Int] I want to provide both of:
- The
Intsum of the elements in the list - A
List[String]the elements of which are created by appending the "Z" to the String representation of theInts
My understanding is that I can do this using traverse but in such a way as to only actually traverse my structure once, unlike this solution:
val xs = List(1, 2, 3, 4)
val (sum, strings) = (xs.sum, xs map (_.toString + "Z"))
NOTE 1 - I know that there are other ways of doing this and that I neither need traverse for this example, and nor is traverse even necessarily the clearest way to solve it. I am, however, trying to understand traverse, so am really looking for the answer to the question as stated
EDIT - thanks to missingfaktor below for showing how to do this using State. I guess what I want to know is how I can compose the two independent calculations. For example; my functions are notionally as follows:
val shape = (_ : List[Int]) map (_.toString + "Z")
val accum = (_ : List[Int]).sum
I want to have these mechanisms of accumulation independently of one another and then choose whether to traverse my List[Int] using either or both of them. I imagined some code a bit like this:
xs traverse shape //A List[String]
xs traverse accum //An Int
xs traverse (shape <x> accum) //The pair (List[String], Int)
Eric implies that this is possible but I don't get how to do it ~ i.e. I don't see how to define shape and accum in such a way as that they can be composed, nor how to compose them.
NOTE 2 that shape and accum are not meant to literally be the functions with the signatures as above. They are expressions which have the type necessary to perform the above traversals.
foldMapDefaultscalaz.github.com/scalaz/scalaz-2.9.1-6.0.4/doc.sxr/scalaz/…. I think the key is in thatConstthat creates a phantom applicative functor. Note thatxs.foldMapDefault(i => (i, List(i))does what you want. – huynhjl Feb 6 at 15:38traverseis a generalization of an iteration; it can accumulate values or build a structure with the same shape as the traversee. 2. the cartesian product of a traverse is a traverse. Hence you can do 2 calculations in one traversal – oxbow_lakes Feb 6 at 15:43traversein my code is to avoid callingmapand thensequence. i.e.xss.traverse(f)==xss.map(f).sequence. Useful in cases like, when you want to getValidationNEL[E, Seq[Seq[B]]]fromSeq[Seq[A]]by applyingA => ValidationNEL[E, B]. – missingfaktor Feb 6 at 15:47M[Trade](where there is aTraverse[M]) such as: inventoryP&L, tradingP&L, totalQtySold, totalQtyBought etc etc. These could then be composed into calculations which happen in a single iteration. A beautiful example of FP enabling componentisation. – oxbow_lakes Feb 6 at 18:14