I can do (x : int array)
But I need only 300 elements array , so how do I (x : int[300]) ?
Can't find such information over msdn )
@Marcelo Cantos No reason , but I always used sized arrays. Why not ?
|
I can do (x : int array) But I need only 300 elements array , so how do I (x : int[300]) ? Can't find such information over msdn ) @Marcelo Cantos No reason , but I always used sized arrays. Why not ? |
||||
|
|
No. The F# type system does not support types such as "array of size 300", and even if it did, using the type system to check potential array overflows at compile time is too impractical to implement. Besides, "has exactly 300 elements" is an useless property in F# in almost all situations, because there is a wealth of functions and primitives that work on arrays of arbitrary size without any risk of overflow ( If you really need to represent the "has exactly 300 elements" property, the simplest thing you could do is create a wrapper type around the native array type. This lets you restrict those operations that return arrays to only operations that respect the 300-element invariant (such as a |
|||
|
|