Module | Description |
Microsoft.FSharp.Compatibility.CompatArray |
Operations to manipulate .NET-compatible arrays, only really necessary
use when using .NET 1.x.
|
Microsoft.FSharp.Compatibility.CompatMatrix |
Pseudo-polymorphic 2-dimensional arrays. Only really used when working with .NET 1.x.
For any particular 'a , the "'a[,]" type is type-compatible with
the corresponding C# 2-dimensional array type. The module contains
operations to manipulate these values. The operations may be used
on any version of the .NET CLR. See the 'Advanced' section of
the manual for when 'Compatibility' array operations are needed to write
code that will function on any version of the CLR.
See the sample fsharp/Automation/Excel for an example of passing one of
these values to fill in the cells of an Excel spreadsheet.
|
Microsoft.FSharp.Compatibility.MATLAB |
Functions to make F# math-related code look a bit like MATLAB (TM) code.
|