'Declaration
Public Overloads Shared Function ValidateDimensions( _ ByVal allowZeroDimension As Boolean, _ ByVal dimensions As Int32Collection, _ ByVal maxArrayLength As Integer _ ) As ValueTuple(Of Boolean,Integer)
'Usage
Dim allowZeroDimension As Boolean Dim dimensions As Int32Collection Dim maxArrayLength As Integer Dim value As ValueTuple(Of Boolean,Integer) value = Matrix.ValidateDimensions(allowZeroDimension, dimensions, maxArrayLength)
public static ValueTuple<bool,int> ValidateDimensions( bool allowZeroDimension, Int32Collection dimensions, int maxArrayLength )
public: static ValueTuple<bool,int> ValidateDimensions( bool allowZeroDimension, Int32Collection^ dimensions, int maxArrayLength )
Parameters
- allowZeroDimension
- Allow zero value dimensions
- dimensions
- Dimensions to be validated
- maxArrayLength
- The limit representing the maximum array length
Return Value
Tuple with validation result and the calculated length of the flattended matrix