Skip to content

Commit

Permalink
Add indexed to Traverse
Browse files Browse the repository at this point in the history
  • Loading branch information
andyscott committed Jul 7, 2017
1 parent 099e459 commit 98b6808
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
12 changes: 12 additions & 0 deletions core/src/main/scala/cats/Traverse.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package cats

import cats.data.State

import simulacrum.typeclass

/**
Expand Down Expand Up @@ -97,4 +99,14 @@ import simulacrum.typeclass

override def map[A, B](fa: F[A])(f: A => B): F[B] =
traverse[Id, A, B](fa)(f)

/**
* Traverses through the structure F, pairing the values with
* assigned indices.
*
* The behavior is consistent with the Scala collection library's
* `zipWithIndex` for collections such as `List`.
*/
def indexed[A](fa: F[A]): F[(A, Int)] =
traverse(fa)(a => State((s: Int) => (s + 1, (a, s)))).runA(0).value
}
6 changes: 6 additions & 0 deletions tests/src/test/scala/cats/tests/ListTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,10 @@ class ListTests extends CatsSuite {
l.show should === (l.toString)
}
}

test("indexed consistent with zipWithIndex") {
forAll { (fa: List[String]) =>
Traverse[List].indexed(fa) should === (fa.zipWithIndex)
}
}
}

0 comments on commit 98b6808

Please sign in to comment.