arrow-core-data / arrow.core / EitherOf
typealias ~~EitherOf~~<A, B> = Kind2<
ForEither
, A, B>
Deprecated: Higher Kinded types and their related type classes will no longer be supported after Arrow 0.13.0. Most relevant APIs are now concrete over the data types available as members or top level extension functions
Either | In day-to-day programming, it is fairly common to find ourselves writing functions that can fail. For instance, querying a service may result in a connection issue, or some unexpected JSON response.sealed class Either<out A, out B> : EitherOf <A, B> |
Do you like Arrow?
✖