-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Seq.traverse & sequence functions (#277)
* Added POC functions * benchmark updates * Refactored functions & added unit tests * Added documentation * Added more benchmarks * Updated unit tests to fix transpiling issues * Updated Seq.fooM functions to have an early exit condition * Updated benchmark functions to be more accurate of actual behavior * Inlined base traverse functions * Updated seq functions to seq expressions for improved performance per reviewer suggestions
- Loading branch information
1 parent
fd9460f
commit a48180d
Showing
24 changed files
with
1,985 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "benchmarks", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/benchmarks/bin/Release/net7.0/benchmarks.exe", | ||
"args": [], | ||
"env": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
}, | ||
"console": "integratedTerminal", | ||
"preLaunchTask": "build release", | ||
"cwd": "${workspaceFolder}/benchmarks/bin/Release/net7.0/" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
{ | ||
"editor.inlayHints.enabled": "off", | ||
"FSharp.enableAdaptiveLspServer": true, | ||
"FSharp.enableMSBuildProjectGraph": true, | ||
"editor.formatOnSave": true, | ||
"FSharp.notifications.trace": false, | ||
"FSharp.notifications.traceNamespaces": [ | ||
"BoundModel.TypeCheck", | ||
"BackgroundCompiler." | ||
], | ||
"FSharp.fsac.conserveMemory": true, | ||
"FSharp.fsac.parallelReferenceResolution": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build release", | ||
"type": "process", | ||
"command": "dotnet", | ||
"args": [ | ||
"build", | ||
"-c", | ||
"Release", | ||
"${workspaceFolder}/FsToolkit.ErrorHandling.sln", | ||
"/property:GenerateFullPaths=true", | ||
"/consoleloggerparameters:NoSummary" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.