NetFabric.Hyperlinq icon indicating copy to clipboard operation
NetFabric.Hyperlinq copied to clipboard

High performance LINQ implementation with minimal heap allocations. Supports enumerables, async enumerables, arrays and Span<T>.

Results 9 NetFabric.Hyperlinq issues
Sort by recently updated
recently updated
newest added

It would be nice to have one library with LINQ optimizations instead of two: https://github.com/reegeek/StructLinq

Hi, I executed this simple test in Unity and the ToList() doesn't work well... ?! ``` public List _firstList = null; public class InboxItem { public int int1; public float...

The compiler is not able to infer the generics types when using constraints. For this reason, a source generator was used to generate all the generics mappings so that a...

In this issue you seem to have introduced an option type for some of the linq functions, https://github.com/NetFabric/NetFabric.Hyperlinq/issues/133 However Linq original First and Hyperlinq first now have a different signature....

I am using the `FatValueType` from NetFabric's own LINQ benchmarks project (https://github.com/NetFabric/LinqBenchmarks), except I've made it a `readonly record struct` instead of just a `struct`, so it basically becomes the...

(NOTE: All of this is with version 3.0.0-beta48 from NuGet.) If I do the following: `ValueEnumerable.Range(0, 10).Sum()` I get back `50` for the result, when the value should be `45`....