Bruno Juchli
Bruno Juchli
Note that on September 29th between 1:15 and 1:45 UTC the timer triggered functions have re-started to execute without any action from our side. (we have automated deployments triggered by...
I also just tried to publish my Azure-Functions project with ReadyToRun and it seems i'm running into the same problem. This is the command i've used: >dotnet publish --configuration Release...
> Hmm.. I would rather try to build a `CompareBy...` method for every case instead of using `bool` parameter which in certain cases are overlapping (example 2 and 3 above,...
Hi @dennisdoomen > I must be missing something, but what is there to compare between member-less records? ------ Their type. That's why I'd like to have value semantic for them....
@dennisdoomen @jnyrup So the options are as follows, correct? - using `expected.Equals(actual)`: - CompareMemberless**Types**By**Value** (on all memberless types) - CompareMemberless**Records**By**Value** (on memberless records only) - using `actual.GetType() == expected.GetType()` -...
Ok, so we'd have - ComparingRecordsByValue() - ComparingRecordsByMembers() - CompareMemberlessTypesByType() How should the implementation respect combinations of these? Should it (not) matter in which sequence these are called? For example...
@nvuillam Thanks for the input. Sorry it took me so long to respond. Initially I was under the impression that I could also somehow remove the `lint` argument without actually...
Sounds like a really interesting idea. Regarding "expectations": Adding support to xunit will not suffice to make this work with ReSharper / Rider. I don't know how important that is...
I personally combine `OneOf` with `LanguageExt` and for scenarios as these I combine `Either` with oneof. Code then looks like below. It's not perfect since you still need to manually...
## Benchmark ```c# using System; using BenchmarkDotNet.Attributes; namespace LanguageExt.Benchmarks { [RPlotExporter, RankColumn] [GenericTypeArguments(typeof(int))] [GenericTypeArguments(typeof(string))] public class SetBenchmarks { [Params(0, 1, 2, 3, 10, 100, 1000, 10000, 100000)] public int N;...