v0.37.0
0.37.0 - 2023-03-13
Changes
- [
extras-cats
] FixinnerFold
andinnerFoldF
forF[Either[A, B]]
to have the same method signature asEither
's (#368)-
innerFold
def innerFold[D](ifLeft: => D)(f: B => D)(implicit F: Functor[F]): F[D]
to
def innerFold[D](forLeft: A => D)(forRight: B => D)(implicit F: Functor[F]): F[D]
-
innerFoldF
def innerFoldF[D](ifLeft: => F[D])(f: B => F[D])(implicit F: FlatMap[F]): F[D]
to
def innerFoldF[D](forLeft: A => F[D])(forRight: B => F[D])(implicit F: FlatMap[F]): F[D]
-