ArrayT is an F# extension and module library for Array<'T>
It also works with Fable.
- A
Array
module that has a additional functions to theArray
module fromFSharp.Core
. - Extension members on
Array
like.Get
.Set
.First
.Last
.SecondLast
and more. With nicer IndexOutOfRangeExceptions that include the bad index and the actual size.
Just open the namespace
open ArrayT
this namespace contains:
- a module also called
Array
- this will also auto open the extension members on
Array<'T>
All Tests run in both javascript and dotnet. go to the tests folder
cd Tests
For testing with .NET using Expecto run
dotnet run
for testing with Fable.Mocha run
npm test
0.20.0
- add filteri
0.19.0
- copy from ResizeArray library 0.19.0