FSharpAux 2.0.0
dotnet add package FSharpAux --version 2.0.0
NuGet\Install-Package FSharpAux -Version 2.0.0
<PackageReference Include="FSharpAux" Version="2.0.0" />
paket add FSharpAux --version 2.0.0
#r "nuget: FSharpAux, 2.0.0"
// Install FSharpAux as a Cake Addin #addin nuget:?package=FSharpAux&version=2.0.0 // Install FSharpAux as a Cake Tool #tool nuget:?package=FSharpAux&version=2.0.0
Extensions, auxiliary functions and data structures for the F# programming language.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- FSharp.Core (>= 6.0.7)
- FSharpAux.Core (>= 2.0.0)
NuGet packages (17)
Showing the top 5 NuGet packages that depend on FSharpAux:
Package | Downloads |
---|---|
FSharpAux.IO
Package Description |
|
FSharp.Stats
F#-first linear algebra, machine learning, fitting, signal processing, and statistical testing. |
|
BioFSharp
Open source bioinformatics and computational biology toolbox written in F#. |
|
Graphoscope
A pragmatic approach to network science. |
|
BioFSharp.IO
Read/write functions for various biological file formats |
GitHub repositories
This package is not used by any popular GitHub repositories.
This is a major release that introduces a split of `FSharpAux` into 2 projects:
- `FSharpAux.Core` contains all functionality that can be transpiled into javascript via Fable
- `FSharpAux` depends on `FSharpAux.Core` and adds functionality that will only work in .NET environments.
The name is intentionally kept the same as the old package, since this is the package you'll want to use in .NET.
`FSharpAux.IO` is not affected by this change, as IO functionality cannot be transpiled anyways.
Additional release notes:
FSharpAux**
Add functions for:
String:
* trim: Takes a string and returns its copy with all leading and trailing white-space characters removed.
* List:
* intersect: Computes the intersection of two lists.
* outersect: Computes the outersection (known as "symmetric difference" in mathematics) of two lists.
* groupWhen: Iterates over elements of the input list and groups adjacent elements. A new group is started when the specified predicate holds about the element of the list (and at the beginning of the iteration).
For example:
`List.groupWhen isOdd [3;3;2;4;1;2]` = `[[3]; [3; 2; 4]; [1; 2]]`
* Array:
* intersect: Computes the intersection of two arrays.
* outersect: Computes the outersection (known as "symmetric difference" in mathematics) of two arrays.
* groupWhen: Iterates over elements of the input array and groups adjacent elements. A new group is started when the specified predicate holds about the element of the array (and at the beginning of the iteration).
For example:
`Array.groupWhen isOdd [|3;3;2;4;1;2|]` = `[|[|3|]; [|3; 2; 4|]; [|1; 2|]|]`
* Seq:
* intersect: Computes the intersection of two sequences.
* outersect: Computes the outersection (known as "symmetric difference" in mathematics) of two sequences.
* JaggedArray:
* ofArray2D: Creates a jagged array from a 2D array.
Fix bugs:
Seq:
* groupWhen: Returned incorrect results when last item met condition. Last item was not grouped alone even if it should.
* String:
* first: Returned `IndexOutOfRangeException` when applied to empty strings. Changed to `System.IndexOutOfRangeException`.
* last: Returned `IndexOutOfRangeException` when applied to empty strings. Changed to `System.IndexOutOfRangeException`.
* Array:
* groupWhen: Returned an empty array if the predicate never returned true.
* contains: Removed. Is present in FSharp.Core library by now and therefore not needed anymore.
Some typo fixes