Eddie Stanley
Eddie Stanley
Consider the following two sorted arrays: Left: ```[1,2,3,4,5,6,7,8,9]``` Right: ```[1,3,4,6,8]``` Under the reference (JS) implementation we get an efficent output: ``` { "_t": "a", "_1": [ 2, 0, 0 ],...
Would it be possible to implement `sequenceAcc` for Option? Like you have for `Either`? Could be used for validation - let's say you have a bunch of functions that -...
Population of `DateTimeOffset` properties does not respect the seed. Failing test case: ```csharp [Fact] public async Task DateTimeOffsetShouldBeIdenticalWhenSeedUsed() { int seed = 1; var faker1 = new AutoFaker().UseSeed(seed); var entity1...
Firstly, thanks for the great library 🙂 It appears that the function returned from `Either::liftApAcc` [closes over](https://github.com/emmanueltouzery/prelude-ts/blob/736e40c9dcea6a3179daf1db52152159e0ab7236/src/Either.ts#L259-L261) `leftErrs` from the outer scope. That effectively means the function returned from `Either::liftApAcc`...
I've got some code like this ```typescript // We're populating a FinancialTransaction bit by bit // Start in the "right" state with just the transactionId populated const initial = Either.right({...
### Describe the feature you'd like: When writing tests we'll often write a positive test i.e. something appears when we expect it to with a corresponding negative test i.e. it...
MSBuild allows templating / "meta-programming" of `csproj` files via `Directory.Build.Props` & `Directory.Build.Targets` - see this page for more [background](https://learn.microsoft.com/en-us/visualstudio/msbuild/customize-by-directory?view=vs-2022) but basically * `Directory.Build.Props` allows setting default property values across all...
GetTypeDefinitionFor does not play nicely with runtime generated types (e.g. coverlet code coverage)
Apologies for the vague issue - we've been running into problems with conventions that use [`GetTypeDefinitionFor`](https://github.com/andrewabest/Conventional/blob/bba58697d75c0656e9a52d680b27fc45f73de95e/src/Core/Conventional/Conventions/Cecil/DecompilationCache.cs#L100) _when types are emitted at runtime_. As an example, `MustNotCallMethodConventionSpecification` (and anything that dervies...
See https://github.com/ValentinH/jest-fail-on-console/issues/33
Not my changes :)