Laszlo Lueck
Laszlo Lueck
Thank you @vkhorikov ! Yes it is exactly the same, i´m too blind! ;) Funny part, the signature is the same as my ResolveOr so i can simply replace the...
Hi again, one signature i´m missing with match: ``` public static TOut ResolveOr(this Maybe source, TOut alternative) => !source.HasValue ? alternative : source.Value; ``` With this you can build something...
OK, i answer my own question. Looks like Unwrap does the same as my function do. I´m too blind. Tanks again, Laszlo
One question: Is there a Wrapper for nullable (or the counterpart of unwrap)? Currently i have written something like this: ``` public static Maybe MaybeValue(this TOut value) { return value...
OK, for the Values method there is a `Choose` method in your project. That seems nearly that what i was looking for. But its usage is a little bit more...
Hi Vladimir, allright, i would read the documentation and follow the steps. To answer your question: Call me old school. Jokes aside! I prefer to use a `Dictionary`, which is...
You will find the pull-Request to this enhancement here https://github.com/vkhorikov/CSharpFunctionalExtensions/pull/300 Regards, Laszlo
Here it is a more specific information: Currently the build fails after updating LangguageExt.CodeGen to version 4.2.8 After downgrade to 4.2.7 all works fine
Hi, thats crazy. Before, `CodeGeneration.Roslyn` was implicitly installed as version 0.7.63 `CodeGeneration.Roslyn.BuildTime` was implicitly installed as version 0.6.1 I´ve downgraded `CodeGeneration.Roslyn` as you suggested to version 0.6.1 but without luck....
No, i´ve not moved or removed to or from a machine. You wrote: > The code-gen library [needs the .NET 2.1 SDK] https://github.com/AArnott/CodeGeneration.Roslyn#prerequisites) to run. That´s confusing, because the version...