FSharpAux.IO
1.1.0
See the version list below for details.
dotnet add package FSharpAux.IO --version 1.1.0
NuGet\Install-Package FSharpAux.IO -Version 1.1.0
<PackageReference Include="FSharpAux.IO" Version="1.1.0" />
paket add FSharpAux.IO --version 1.1.0
#r "nuget: FSharpAux.IO, 1.1.0"
// 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 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. |
-
.NETStandard 2.0
- FSharp.Core (>= 6.0.1)
- FSharpAux (>= 1.1.0)
-
net5.0
- FSharp.Core (>= 6.0.1)
- FSharpAux (>= 1.1.0)
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.
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.
---