Reputation: 1631
In C# I'd write something like
MyType arr = new MyType[10];
to alloc arr
as array which has 10 items of type MyType
.
How to do the same in F# ??
let mutable arr = ?????????????
Upvotes: 2
Views: 240
Reputation: 74842
To initialise the array to the default (e.g. null or zero), use Array.zeroCreate:
let arr : int array = Array.zeroCreate 10
To initialise with a value, use Array.init.
Upvotes: 4
Reputation: 80355
You could conceivably be interested in this discussion although it is in an OCaml context.
Upvotes: 2