Rohde Fischer
10/08/2024, 8:08 AMValidated.applicativeNel<ValidaionError>()
.tupledN(
parseDate(startDate).toValidatedNel(),
parseDate(endDate).toValidatedNel()
)
.map { (startDate, endDate) -> TODO() }
into something that doesn't use the applicativeNel. But the only "hint" I got is to use the methods on validatedYoussef Shoaib [MOD]
10/08/2024, 8:21 AMRohde Fischer
10/08/2024, 8:24 AMRohde Fischer
10/08/2024, 8:35 AMmapOrAccumulate
. Will give it a try, seems that the validated is the only broken part left in the codeAlejandro Serrano.Mena
10/08/2024, 11:38 AM