isArray static method

bool isArray(
  1. int type
)
Check if a DataType is an array DataType to check

Implementation

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