Array.equal

Check whether two arrays are equal.

Equality is defined as:

  • the array have the same number of elements
  • the values of elements in corresponding positions are equal
class Array
bool
equal

Parameters

b json.array.Array

another JSON array

Return Value

Type: bool

TRUE if the arrays are equal, and FALSE otherwise