Skip to content

Commit

Permalink
Reformat with scalafmt 3.8.4
Browse files Browse the repository at this point in the history
Executed command: scalafmt --non-interactive
  • Loading branch information
zio-scala-steward[bot] committed Jan 14, 2025
1 parent 576ac65 commit a62a766
Show file tree
Hide file tree
Showing 3 changed files with 321 additions and 41 deletions.
177 changes: 159 additions & 18 deletions core/shared/src/main/scala/zio/prelude/AssociativeBoth.scala
Original file line number Diff line number Diff line change
Expand Up @@ -491,9 +491,32 @@ object AssociativeBoth extends AssociativeBothLowPriority {
/**
* Combines 20 `F` values using the provided function `f`.
*/
def mapN[F[
+_
]: AssociativeBoth: Covariant, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, B](
def mapN[
F[
+_
]: AssociativeBoth: Covariant,
A0,
A1,
A2,
A3,
A4,
A5,
A6,
A7,
A8,
A9,
A10,
A11,
A12,
A13,
A14,
A15,
A16,
A17,
A18,
A19,
B
](
a0: F[A0],
a1: F[A1],
a2: F[A2],
Expand Down Expand Up @@ -537,9 +560,33 @@ object AssociativeBoth extends AssociativeBothLowPriority {
/**
* Combines 21 `F` values using the provided function `f`.
*/
def mapN[F[
+_
]: AssociativeBoth: Covariant, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, B](
def mapN[
F[
+_
]: AssociativeBoth: Covariant,
A0,
A1,
A2,
A3,
A4,
A5,
A6,
A7,
A8,
A9,
A10,
A11,
A12,
A13,
A14,
A15,
A16,
A17,
A18,
A19,
A20,
B
](
a0: F[A0],
a1: F[A1],
a2: F[A2],
Expand Down Expand Up @@ -587,9 +634,34 @@ object AssociativeBoth extends AssociativeBothLowPriority {
/**
* Combines 22 `F` values using the provided function `f`.
*/
def mapN[F[
+_
]: AssociativeBoth: Covariant, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, B](
def mapN[
F[
+_
]: AssociativeBoth: Covariant,
A0,
A1,
A2,
A3,
A4,
A5,
A6,
A7,
A8,
A9,
A10,
A11,
A12,
A13,
A14,
A15,
A16,
A17,
A18,
A19,
A20,
A21,
B
](
a0: F[A0],
a1: F[A1],
a2: F[A2],
Expand Down Expand Up @@ -973,9 +1045,31 @@ object AssociativeBoth extends AssociativeBothLowPriority {
/**
* Combines 20 `F` values into a tuple.
*/
def tupleN[F[
+_
]: AssociativeBoth: Covariant, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19](
def tupleN[
F[
+_
]: AssociativeBoth: Covariant,
A0,
A1,
A2,
A3,
A4,
A5,
A6,
A7,
A8,
A9,
A10,
A11,
A12,
A13,
A14,
A15,
A16,
A17,
A18,
A19
](
a0: F[A0],
a1: F[A1],
a2: F[A2],
Expand Down Expand Up @@ -1004,9 +1098,32 @@ object AssociativeBoth extends AssociativeBothLowPriority {
/**
* Combines 21 `F` values into a tuple.
*/
def tupleN[F[
+_
]: AssociativeBoth: Covariant, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20](
def tupleN[
F[
+_
]: AssociativeBoth: Covariant,
A0,
A1,
A2,
A3,
A4,
A5,
A6,
A7,
A8,
A9,
A10,
A11,
A12,
A13,
A14,
A15,
A16,
A17,
A18,
A19,
A20
](
a0: F[A0],
a1: F[A1],
a2: F[A2],
Expand Down Expand Up @@ -1036,9 +1153,33 @@ object AssociativeBoth extends AssociativeBothLowPriority {
/**
* Combines 22 `F` values into a tuple.
*/
def tupleN[F[
+_
]: AssociativeBoth: Covariant, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21](
def tupleN[
F[
+_
]: AssociativeBoth: Covariant,
A0,
A1,
A2,
A3,
A4,
A5,
A6,
A7,
A8,
A9,
A10,
A11,
A12,
A13,
A14,
A15,
A16,
A17,
A18,
A19,
A20,
A21
](
a0: F[A0],
a1: F[A1],
a2: F[A2],
Expand Down
Loading

0 comments on commit a62a766

Please sign in to comment.