Skip to content

Commit

Permalink
Fix for IEither/Either MatchUntyped parameter order is mismatched #1443
Browse files Browse the repository at this point in the history
  • Loading branch information
louthy committed Feb 15, 2025
1 parent b85394b commit b6cff1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ bool IsLeft
get;
}

R MatchUntyped<R>(Func<object?, R> Right, Func<object?, R> Left);
R MatchUntyped<R>(Func<object?, R> Left, Func<object?, R> Right);

Type GetUnderlyingRightType();
Type GetUnderlyingLeftType();
Expand Down

0 comments on commit b6cff1b

Please sign in to comment.