Skip to content

Instantly share code, notes, and snippets.

@jbgi
Last active February 9, 2017 07:03
Show Gist options
  • Select an option

  • Save jbgi/d6035910e55b5b45d1e18553530d9d72 to your computer and use it in GitHub Desktop.

Select an option

Save jbgi/d6035910e55b5b45d1e18553530d9d72 to your computer and use it in GitHub Desktop.
Minimal Either in Java with Derive4J
import java.util.function.Function;
import org.derive4j.Data;
@Data
interface Either<A, B> {
<X> X match(Function<A, X> left, Function<B, X> right);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment