I use EitherT[Future, Failure, Iterator[A]]. The regular scala can map with index as below.
myList.zipWithIndex.map { case (element, index) =>
println(element, index)
s"${element}(${index})"
}
How to do map with index as the above for structure EitherT[Future, Failure, Iterator[A]] for Iterator[A] ?