FSharpAux.IO 2.0.0

dotnet add package FSharpAux.IO --version 2.0.0
NuGet\Install-Package FSharpAux.IO -Version 2.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FSharpAux.IO" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FSharpAux.IO --version 2.0.0
#r "nuget: FSharpAux.IO, 2.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FSharpAux.IO as a Cake Addin
#addin nuget:?package=FSharpAux.IO&version=2.0.0

// Install FSharpAux.IO as a Cake Tool
#tool nuget:?package=FSharpAux.IO&version=2.0.0

Package Description

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (12)

Showing the top 5 NuGet packages that depend on FSharpAux.IO:

Package Downloads
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#.

BioFSharp.IO

Read/write functions for various biological file formats

BioFSharp.Stats

Statistical functions with a clear biological focus written in F#.

BioFSharp.ML

Machine learning with BioFSharp and CNTK.Net.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 10,723 4/21/2023
1.1.0 15,920 11/10/2021
1.0.0 36,402 2/13/2020

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