arrow icon indicating copy to clipboard operation
arrow copied to clipboard

["Request"] Missing EitherNes typealias

Open nesk opened this issue 2 years ago • 1 comments

Arrow already has an EitherNel typealias:

typealias EitherNel<E, A> = Either<NonEmptyList<E>, A>

What about EitherNes?

typealias EitherNes<E, A> = Either<NonEmptySet<E>, A>

I suppose it was not already present because I see no one else using the NES acronyme for Non-Empty Set. 🤔

nesk avatar Dec 01 '23 13:12 nesk

@nomisRev @franciscodr @raulraja @kyay10 thoughts on this? I don't think we should do this, since we don't really use Either<NonEmptySet<E>, A> anywhere in our API...

serras avatar Feb 08 '24 12:02 serras