You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I change it to the code below, it seems to work properly.
/// <summary>/// Equivalent of `Either<Error, A>`/// Called `Fin` because it is expected to be used as the concrete result of a computation/// </summary>publicclass FinTest
...
Who cares?
It might seem like a minor issue, but I plan on using Fin, Either, et. al. as Trojan horses for functional programming in codebases where maintainers aren't familiar with LanguageExt. Either<Error, int> is a very descriptive return type. Fin<int> is extremely convenient, but its meaning is less clear without mousing over the type for its description.
The text was updated successfully, but these errors were encountered:
The XML summary comment for the
Fin
class doesn't load properly.I think it's because of the unescaped
<
and>
here:language-ext/LanguageExt.Core/Monads/Alternative Monads/Fin/Fin.cs
Line 14 in abf61d3
If I change it to the code below, it seems to work properly.
Who cares?
It might seem like a minor issue, but I plan on using
Fin
,Either
, et. al. as Trojan horses for functional programming in codebases where maintainers aren't familiar with LanguageExt.Either<Error, int>
is a very descriptive return type.Fin<int>
is extremely convenient, but its meaning is less clear without mousing over the type for its description.The text was updated successfully, but these errors were encountered: