You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Arrow 1.2.0 Validated was deprecated in favor of Either.
To replace Validated Arrow now exposes zipOrAccumulate and mapOrAccumulate functions to accumulate Either.Left or Raise<E> errors that have occured when combining different Raise functions or Either values and when transforming an Iterable using Raise functions or Either values.
In this ticket we should remove all usages of Validated, and replace them with Either,
and replace all usages of zip with zipOrAccumulate and traverse with mapOrAccumulate.
Please assign yourself to this ticket before starting, and if you run into any issues please raise a PR so I can provide help and support directly in the code.
Thank you in advance for your interest in the project! Happy hacktoberfest!
The text was updated successfully, but these errors were encountered:
In Arrow 1.2.0
Validated
was deprecated in favor ofEither
.To replace
Validated
Arrow now exposeszipOrAccumulate
andmapOrAccumulate
functions to accumulateEither.Left
orRaise<E>
errors that have occured when combining differentRaise
functions orEither
values and when transforming anIterable
usingRaise
functions orEither
values.In this ticket we should remove all usages of
Validated
, and replace them withEither
,and replace all usages of
zip
withzipOrAccumulate
andtraverse
withmapOrAccumulate
.Please assign yourself to this ticket before starting, and if you run into any issues please raise a PR so I can provide help and support directly in the code.
Thank you in advance for your interest in the project! Happy hacktoberfest!
The text was updated successfully, but these errors were encountered: