Skip to content

Instantly share code, notes, and snippets.

@davidelettieri
Last active April 3, 2020 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidelettieri/7eed4df336c6fe9ed78ef52af838288b to your computer and use it in GitHub Desktop.
Save davidelettieri/7eed4df336c6fe9ed78ef52af838288b to your computer and use it in GitHub Desktop.
public static Result<S, TError> Then<S, TValue, TError>(this Result<TValue, TError> r, Func<TValue, Result<S, TError>> f)
=> Bind(f)(r);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment