User`s guide

bool IsEmpty() const
Purpose Return true if underlying array is empty
C++
Syntax
#include "mclcppclass. h"
mwArray a;
bool b = a.IsEmpty(); // Should return true
Arguments None
Return
Value
Boolean indicating if the array is empty.
Description Use this method to determine if an array is empty.
C-58