Result type

In functional programming, a result type is a Monadic type holding a returned value or an error code. They provide an elegant way of handling errors, without resorting to exception handling; when a function that may fail returns a result type, the programmer is forced to consider success or failure paths, before getting access to the expected result; this eliminates the possibility of an erroneous programmer assumption.

Examples

  • In OCaml, it is defined by the standard library as type ('a, 'b) result = Ok of 'a | Error of 'b type.
  • In Rust, the standard library provides the Result<T, E> type to handle return values or error codes, expanding on the functionality of the Option<T> type.
  • Haskell has a type that is sometimes used in a similar way, called Either, which is defined as data Either a b = Left a | Right b.
gollark: It blew up spawn on one server i was on!
gollark: DRACONIC EVOLUTION REALLY QUITE BAD!
gollark: DE BAD!!!!!!
gollark: Fine. I'll put up with the lack of /home and /tpa for now. But soon I shall have my revenge, in the form of a global teleport network.
gollark: We could also just use viaducts for short-range stuff.

See also

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.