如何使用 Dartz "concatenate" 左转
How to "concatenate" Lefts using Dartz
我想在多个 Either 类型上执行类似于 Either.map5 的操作。
但是,我不想只保留第一个 Left 以防我的 Eithers 被 Left,我想保留所有 Left Either 的内容,并将它们放入一个列表中。
基本上我想要一个 Either 而不是 map5 的 Either 结果。
是否有一种开箱即用的方法可以使用 dartz 执行此操作?
我已经根据自己的需要创建了自己的解决方案,这里是:
class EitherExtensions {
static Either<List<L>, F> map5AppendingLefts<L, A, A2 extends A, B,
B2 extends B, C, C2 extends C, D, D2 extends D, E, E2 extends E,F>(
Either<L, A2> fa,
Either<L, B2> fb,
Either<L, C2> fc,
Either<L, D2> fd,
Either<L, E2> fe,
F fun(A a, B b, C c, D d, E e)) {
IList<Either<L, Object?>> listOfEithers = IList.from([fa, fb, fc, fd, fe]);
List<L> listOfLefts = List<L>.empty(growable: true);
if (listOfEithers.any((either) => either.isLeft())) {
listOfEithers
.forEach((element) => {element.leftMap((l) =>
listOfLefts.add(l))});
return Left(listOfLefts);
} else {
return Either.map5(fa, fb, fc, fd, fe,
(A a, B b, C c, D d, E e) => fun(a, b, c, d, e))
.leftMap((l) => List<L>.empty());
}
}
}
基本上,如果任何提供的 Eithers 是 Left,我 return 一个带有 Left 内容列表的 left,否则我调用捆绑的 map5 函数并将最终结果的 left 映射到一个空列表只是为了匹配预期的 return 类型,因为我已经知道它无论如何都不是左边的。
我想在多个 Either 类型上执行类似于 Either.map5 的操作。 但是,我不想只保留第一个 Left 以防我的 Eithers 被 Left,我想保留所有 Left Either 的内容,并将它们放入一个列表中。
基本上我想要一个 Either 而不是 map5 的 Either
是否有一种开箱即用的方法可以使用 dartz 执行此操作?
我已经根据自己的需要创建了自己的解决方案,这里是:
class EitherExtensions {
static Either<List<L>, F> map5AppendingLefts<L, A, A2 extends A, B,
B2 extends B, C, C2 extends C, D, D2 extends D, E, E2 extends E,F>(
Either<L, A2> fa,
Either<L, B2> fb,
Either<L, C2> fc,
Either<L, D2> fd,
Either<L, E2> fe,
F fun(A a, B b, C c, D d, E e)) {
IList<Either<L, Object?>> listOfEithers = IList.from([fa, fb, fc, fd, fe]);
List<L> listOfLefts = List<L>.empty(growable: true);
if (listOfEithers.any((either) => either.isLeft())) {
listOfEithers
.forEach((element) => {element.leftMap((l) =>
listOfLefts.add(l))});
return Left(listOfLefts);
} else {
return Either.map5(fa, fb, fc, fd, fe,
(A a, B b, C c, D d, E e) => fun(a, b, c, d, e))
.leftMap((l) => List<L>.empty());
}
}
}
基本上,如果任何提供的 Eithers 是 Left,我 return 一个带有 Left 内容列表的 left,否则我调用捆绑的 map5 函数并将最终结果的 left 映射到一个空列表只是为了匹配预期的 return 类型,因为我已经知道它无论如何都不是左边的。