Kev
11/11/2023, 6:53 AMzipOrAccumulate
to compose smart constructors however this function as a maximum raise accumulation of 9 actions. Is there a strategy I can apply to increase the accumulation size?Alejandro Serrano.Mena
11/11/2023, 7:24 AMzipOrAccumulate(
zipOrAccumulate(
thing1, thing2, thing3, thing4,
::Tuple4
),
zipOrAccumulate(
thing5, thing6, thing7, thing8,
::Pair4
)
) { (x1, x2, x3, x4), (x5, x6, x7, x8) -> ... }
Kev
11/11/2023, 7:47 AMYoussef Shoaib [MOD]
11/11/2023, 12:36 PMKev
11/11/2023, 4:46 PMKev
11/13/2023, 12:26 PM2.0.0
milestone has reduced Tuples to Tuple9. I hope this won’t effect the span of zipOrAccumulate parameter lengths.Alejandro Serrano.Mena
11/13/2023, 1:23 PMKev
11/13/2023, 1:24 PMYoussef Shoaib [MOD]
11/13/2023, 1:26 PMzipOrAccumulate
and the like could be made public so people can roll their own higher arity versionsKev
11/13/2023, 1:30 PMAlejandro Serrano.Mena
11/13/2023, 2:56 PMzipOrAccumulate
, using Tuples (or any other type you like) as intermediate stepsKev
11/13/2023, 3:04 PM