isArray method

bool isArray()

Whether object is an array.

Implementation

bool isArray()
{
  return this._rawValue is List;
}