FSharpAux.IO 1.1.0

.NET 5.0 .NET Standard 2.0
dotnet add package FSharpAux.IO --version 1.1.0
NuGet\Install-Package FSharpAux.IO -Version 1.1.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="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FSharpAux.IO --version 1.1.0
#r "nuget: FSharpAux.IO, 1.1.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=1.1.0

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

Package Description

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
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
1.1.0 7,592 11/10/2021
1.0.0 24,276 2/13/2020

FSharpAux**
Add functions for:
Array:
filteri: Returns a new array containing only the elements of the input array for which the given predicate returns true.
countByPredicate: Returns the length of an array containing only the elements of the input array for which the given predicate returns true.
countiByPredicate: Returns the length of an array containing only the elements of the input array for which the given predicate returns true.
choosei: Applies the given function to each element of the array. Returns the array comprised of the results x for each element where the function returns Some x.
findIndices: Returns an array with the indeces of the elements in the input array that satisfy the given predicate.
findIndicesBack: Returns a reversed array with the indeces of the elements in the input array that satisfy the given predicate.
takeNth: Returns an array comprised of every nth element of the input array.
skipNth: Returns an array without every nth element of the input array.
JaggedArray:
toIndexedArray: Transforms a jagged array to an array where each position is indexed (first index: prior rows, second index: prior columns).
init: Creates a jagged array given the dimensions and a generator function to compute the elements.
Array2D:
rotate90DegClockwise: Rotates a 2D-array by 90° clockwise.
rotate90DegCounterClockwise: Rotates a 2D-array by 90° counter-clickwise.
rotate180Deg: Rotates a 2D-array by 180°.
flipHorizontally: Inverses the order of the rows of an 2D-array.
flipVertically: Inverses the order of the columns of an 2D-array.
toIndexedArray: Transforms a 2D-array to an array where each position is indexed (first index: prior rows, second index: prior columns).
List:
filteri: Returns a new list containing only the elements of the list for which the given predicate returns true.
countByPredicate: Returns the length of a list containing only the elements of the input array for which the given predicate returns true.
countiByPredicate: Returns the length of a list containing only the elements of the input array for which the given predicate returns true.
choosei: Applies the given function to each element of the list. Returns the list comprised of the results x for each element where the function returns Some x.
findIndicesBack: Returns a reversed list with the indeces of the elements in the input array that satisfy the given predicate.
findIndices: Returns a list with the indices of the elements in the input array that satisfy the given predicate.
takeNth: Returns a list comprised of every nth element of the input list.
skipNth: Returns a list without every nth element of the input list.
JaggedList:
init: Creates a jagged list given the dimensions and a generator function to compute the elements.
Math:
nthRoot: Returns the nth root of x.
String:
first: Returns the first char of a string.
last: Returns the last char of a string.
splitS: Splits an input string at a given delimiter (substring).
findIndexBack: Returns the last index of a char in a string.
findIndex: Returns the first index of a char in a string.
findIndices: Returns the indices of a char in a string.
findIndicesBack: Returns the indices of a char in a string sorted backwards.
takeWhile: Iterates through the string and returns a string with the chars of the input until the predicate returned false the first time.
skipWhile: Iterates through the string and returns a string that starts at the char of the input where the predicate returned false the first time.
---