User`s guide

int HashCode() const
Purpose Return hash code for array
C++
Syntax
#include "mclcppclass. h"
mwArray a(1, 1, mxDOUBLE_CLASS);
int n = a.HashCode();
Arguments None
Return
Value
An integer value representing a unique hash code for the array.
Description This method constructs a unique hash value form the underlying bytes
in the array. Therefore, arrays of different types will have different
hash codes, even if they are initialized with the same data.
C-64