-
Should be able to handle this similarly to #317.
-
Hello,
having this model:
```
public class Continent
{
public Guid ContinentID { get; set; }
public string ContinentName { get; set; }
public virtual ICollec…
-
Consider the following code:
```cs
var buffer = new int[4096];
var index = 0;
Console.WriteLine(buffer.Index().TryGetNonEnumeratedCount(out _)); // False
Console.WriteLine(buffer.Select((x, i…
-
When MoreLinq is using with net472 target, it gives an error:
CS0121 The call is ambiguous between the following methods or properties: 'System.Linq.Enumerable.ToHashSet(System.Collections.Generic.…
-
Game crashes when I start a new game and configure a starting duplicate.
It's the only mod I'm running, and I am running the default settings.
[ONI Mod Error.txt](https://github.com/user-attachments…
-
### Expected Behavior
See https://github.com/icarus-consulting/Yaapii.Atoms/pull/568 for fix of this issue
### Actual Behavior
The union only works with distinct enumerables. On non-distinct enum…
-
In ruby 2.3:
``` ruby
> %w[John Jack Jim Bob Greg Joe].grep_v(/^J/)
=> ["Bob", "Greg"]
> [1, 1.0, '1', 'one'].grep_v(Numeric)
=> ["1", "one"]
```
Mutating to `Enumerable#grep` is then a clear orth…
-
One time I created `ThreadStatic` context for creating enumerable. I applied it to entities for lazy collection of these. So this context was lost in thread which popup lower in stack. I could change …
-
I'm referring to the `#group_by` method. The use example:
```
(1..6).group_by { |i| i%3 }
```
Shows an erroneous return value, namely:
`#=> {0=>[3, 6], 1=>[1, 4], 2=>[2, 5]}`. It should be:
`{1…
-
### Background and motivation - UPDATED 2024/01/31
So that Enumerable.Range can be used with anything that implements `IBinaryInteger`.
### API Proposal
```csharp
public static class Enumera…