isArray static method

bool isArray(
  1. int type
)

Implementation

static bool isArray(int type)
{
    return ((type & 0x80) == 0x80) && (type != NotModified);
}