We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e550fa6 commit 18a9f68Copy full SHA for 18a9f68
README.md
@@ -42,15 +42,15 @@ You can also improve performance by using struct for Where predicate and select
42
43
## Performances
44
45
-Benchmark are in [here](src\StructLinq.Benchmark).
+Benchmark are in [here](src/StructLinq.Benchmark).
46
For example on following linq sequence:
47
```csharp
48
array
49
.Where(x => (x & 1) == 0)
50
.Select(x => x * 2)
51
.Sum();
52
```
53
- [Benchmark](src\StructLinq.Benchmark\ArrayWhereSelectSum.cs) results are:
+ [Benchmark](src/StructLinq.Benchmark/ArrayWhereSelectSum.cs) results are:
54
55
``` ini
56
0 commit comments