FSharpAux 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package FSharpAux --version 1.1.0
NuGet\Install-Package FSharpAux -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" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FSharpAux --version 1.1.0
#r "nuget: FSharpAux, 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 as a Cake Addin
#addin nuget:?package=FSharpAux&version=1.1.0

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

Package Description

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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 (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#.

BioFSharp.IO

Read/write functions for various biological file formats

BioFSharp.Stats

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

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 14,689 4/21/2023
1.1.0 16,759 11/10/2021
1.0.0 37,099 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.
---