Valentin Tyrichev

Results 3 issues of Valentin Tyrichev

I discovered that not only Func and Func are injected by default, but also Func if TO has constructor with at most one argument of type T1 and optionally other...

Could AgentMember.Status be of some enum type like following? ```cs enum MemberStatus { StatusNone = 0, StatusAlive, StatusLeaving, StatusLeft, StatusFailed } ``` That's corresponds to [serf MemberStatus](https://goo.gl/8j2q62) and looks more...

The implementation of Maybe class in **_The Maybe functor_** post https://blog.ploeh.dk/2018/03/26/the-maybe-functor/ has a little issue, when T is a value type. For example: ```csharp new Maybe().Equals(new Maybe(0)) // true ```...