Email list hosting service & mailing list manager

The names "left" and "right" Lassi Kortela (05 Jun 2020 15:27 UTC)
Re: The names "left" and "right" Marc Nieper-Wißkirchen (05 Jun 2020 15:39 UTC)
Re: The names "left" and "right" John Cowan (05 Jun 2020 16:35 UTC)
Re: The names "left" and "right" Lassi Kortela (05 Jun 2020 17:08 UTC)
Re: The names "left" and "right" Marc Nieper-Wißkirchen (05 Jun 2020 17:17 UTC)
Re: The names "left" and "right" John Cowan (05 Jun 2020 17:18 UTC)

The names "left" and "right" Lassi Kortela 05 Jun 2020 15:27 UTC

Would it be possible to use more obvious names for the Left and Right
subtypes of Either? I know Left and Right are somewhat classic, but they
are also somewhat arbitrary and confusing.

The Elm language uses:

type Result error value
   = Ok value
   | Err error

https://guide.elm-lang.org/error_handling/result.html