File: README-crates.io.md

package info (click to toggle)
rust-either 1.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 180 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (65)
1
2
3
4
5
6
7
8
9
10
The enum `Either` with variants `Left` and `Right` is a general purpose
sum type with two cases.

Either has methods that are similar to Option and Result, and it also implements
traits like `Iterator`.

Includes macros `try_left!()` and `try_right!()` to use for
short-circuiting logic, similar to how the `?` operator is used with `Result`.
Note that `Either` is general purpose. For describing success or error, use the
regular `Result`.