JMarianczuk

Results 2 comments of JMarianczuk

Implementation idea: ``` csharp public static Option Chain(this Option option, Option other) => option.Match(some => some, none: other); public static Option Chain(this Option option, Func other) => option.Match(some => some,...

A workaround is to put ``` xml ``` into the project with internal classes, but that is not a clean solution. When someone has declared and wants to assert the...