def sequenceFutures[A]()

in src/main/scala/com/gu/flexible/snapshotter/model/Attempt.scala [67:69]


  def sequenceFutures[A](response: List[Attempt[A]])(implicit ec: ExecutionContext): Attempt[List[Either[AttemptErrors, A]]] = {
    Async.Right(Future.sequence(response.map(_.asFuture)))
  }