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