|
| 1 | +//> using options -Wunused:all -Yno-deep-subtypes "-Wconf:msg=set repeatedly:s" |
| 2 | + |
| 3 | +//import either.* |
| 4 | + |
| 5 | +trait ResultMapper[A] { |
| 6 | + final def map[B](f: A => B): ResultMapper[B] = ??? |
| 7 | + |
| 8 | + infix final def and[B](other: ResultMapper[B]): ResultMapper[(A, B)] = ??? |
| 9 | +} |
| 10 | + |
| 11 | +trait BoilerplateResultMappers { |
| 12 | + |
| 13 | + def and[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W]( |
| 14 | + b: ResultMapper[B], c: ResultMapper[C], d: ResultMapper[D], e: ResultMapper[E], f: ResultMapper[F], g: ResultMapper[G], h: ResultMapper[H], i: ResultMapper[I], j: ResultMapper[J], k: ResultMapper[K], l: ResultMapper[L], m: ResultMapper[M], n: ResultMapper[N], o: ResultMapper[O], p: ResultMapper[P], q: ResultMapper[Q], r: ResultMapper[R], s: ResultMapper[S], t: ResultMapper[T], u: ResultMapper[U], v: ResultMapper[V], w: ResultMapper[W] |
| 15 | + ): ResultMapper[(B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W)] = |
| 16 | + (b and c and d and e and f and g and h and i and j and k and l and m and n and o and p and q and r and s and t and u and v and w).map { |
| 17 | + case ((((((((((((((((((((((b), c), d), e), f), g), h), i), j), k), l), m), n), o), p), q), r), s), t), u), v), w) => |
| 18 | + (b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w) |
| 19 | + } |
| 20 | +} |
| 21 | + |
| 22 | +/* |
| 23 | +object either { |
| 24 | + type ResultMapperException = RuntimeException |
| 25 | + implicit class EitherOps[A](private val ea: Either[ResultMapperException, A]) extends AnyVal { |
| 26 | + def and[B](eb: Either[ResultMapperException, B]): Either[ResultMapperException, (A, B)] = |
| 27 | + (ea, eb) match { |
| 28 | + case (Right(a), Right(b)) => |
| 29 | + Right((a, b)) |
| 30 | +
|
| 31 | + case (Right(_), Left(ex)) => |
| 32 | + Left(ex) |
| 33 | +
|
| 34 | + case (Left(ex), Right(_)) => |
| 35 | + Left(ex) |
| 36 | +
|
| 37 | + case (Left(_), Left(_)) => |
| 38 | + Left(RuntimeException()) |
| 39 | + } |
| 40 | + } |
| 41 | +} |
| 42 | +*/ |
0 commit comments