How to Turn Your Failing Computations into Success Stories

Abhijit Gupta
4 min readDec 28, 2022

The result monad is a type of monad that is used to represent computations that may return a result or an error. It is often used as an alternative to exceptions for handling error conditions in functional programming.

For an introduction covering Monad : Monad transformer is all you need

Why Exceptions are Overrated: The Case for Result Monads

The motivation for using a result monad is to provide a more explicit and predictable way to handle errors and exceptional situations. When a computation may fail, it is often tempting to use exceptions to signal the failure and allow the caller to handle it. However, this can make it difficult to understand the possible error conditions and how to handle them. It can also make it harder to compose different computations together, since each one may throw an exception that the caller must handle.

By using a result monad instead of exceptions, you can explicitly encode the possible error conditions in the type of the computation. This makes it easier to understand the behavior of the computation and to write code that handles the error conditions in a predictable way. It also allows you to use monadic combinators and other functional programming techniques to compose different computations together in a more flexible and modular way.

In category theory, a monad is a way of representing computations that may have effects, such as interacting with a database or performing I/O. It is defined as a triple (T, η, μ), where T is a functor, η is a natural transformation called the “unit”, and μ is a natural transformation called the “multiplication”.

A result monad is a specific type of monad that is used to represent computations that may return a result or an error. It is typically defined as a type alias or case class that wraps either a value of type T (representing the successful result of a computation) or an error of type E (representing an exception or other failure).

In category theory, the result monad can be represented as a monad (T, η, μ), where T is a functor that takes a type A and wraps it in a Result[A, E] type, η is a natural transformation that takes a value of type A and wraps it in a Success[A] value, and μ is a natural transformation that takes a value of type Result[Result[A, E], E] and flattens it into a Result[A, E] value.

To use the result monad in practice, you can define functions that return a Result[T, E] type and use monadic combinators to compose them in a flexible and modular way. This can help to make your code more robust and easier to understand by explicitly encoding the possible error conditions and allowing you to handle them in a predictable way.

Here is an example of how you might define and use a result monad in Java:

First, define a Result interface that represents the monad:

public interface Result<T, E> {
T getValue();
E getError();
boolean isSuccess();
boolean isError();
}

Next, define two concrete implementations of the Result interface: one for successful results and one for errors:

public class Success<T, E> implements Result<T, E> {
private final T value;

public Success(T value) {
this.value = value;
}

@Override
public T getValue() {
return value;
}

@Override
public E getError() {
throw new UnsupportedOperationException();
}

@Override
public boolean isSuccess() {
return true;
}

@Override
public boolean isError() {
return false;
}
}

public class Failure<T, E> implements Result<T, E> {
private final E error;

public Failure(E error) {
this.error = error;
}

@Override
public T getValue() {
throw new UnsupportedOperationException();
}

@Override
public E getError() {
return error;
}

@Override
public boolean isSuccess() {
return false;
}

@Override
public boolean isError() {
return true;
}
}

Now you can define functions that return a Result type and use them to handle errors and exceptional situations in a more explicit and predictable way. For example, you might define a function to parse an integer from a string like this:

public Result<Integer, String> parseInt(String s) {
try {
return new Success<>(Integer.parseInt(s));
} catch (NumberFormatException e) {
return new Failure<>(e.getMessage());
}
}

To use the result monad, you can pattern match on the value returned by the function. For example:

Result<Integer, String> result = parseInt("42");
if (result.isSuccess()) {
System.out.println("The result is " + result.getValue());
} else {
System.out.println("There was an error: " + result.getError());
}

By using the result monad in this way, you can handle errors and exceptional situations in a more explicit and predictable way, without relying on exceptions.

Overall, the result monad is a useful tool for handling error conditions in functional programming, and it can help to make your code more robust and easier to understand.

--

--