default boolean |
JsArray.equals(JsArray array,
JsArray.TYPE ARRAY_AS) |
Returns true if this array is equal to the given as a parameter.
|
default boolean |
JsObj.equals(JsObj that,
JsArray.TYPE ARRAY_AS) |
return true if this obj is equal to the given as a parameter.
|
default boolean |
Json.equals(JsElem elem,
JsArray.TYPE ARRAY_AS) |
|
JsArray |
JsArray.intersection(JsArray that,
JsArray.TYPE ARRAY_AS) |
Returns the intersection of this array and another given as a parameter, defining characteristics
like order and duplicates occurrence with the given ARRAY_AS parameter.
|
JsObj |
JsObj.intersection(JsObj that,
JsArray.TYPE ARRAY_AS) |
Returns the intersection of this object and another, defining characteristics like order and duplicates
occurrence in arrays with the given ARRAY_AS parameter.
|
JsObj |
JsObj.intersection_(JsObj that,
JsArray.TYPE ARRAY_AS) |
Returns the intersection of this object and another given as parameter applying recursively
the intersection to those elements which are Json of the same type and are located at the same key
and defining characteristics like order and duplicates occurrence in arrays with the given ARRAY_AS
parameter.
|
JsArray |
JsArray.union(JsArray that,
JsArray.TYPE ARRAY_AS) |
Returns the union of this array and another, defining characteristics like order and duplicates
occurrence with the given ARRAY_AS parameter.
|
JsObj |
JsObj.union_(JsObj that,
JsArray.TYPE ARRAY_AS) |
Returns the union of this object and another given as parameter applying recursively the union
to those elements which are Json of the same type and are located at the same key
and defining characteristics like order and duplicates occurrence in arrays with the given ARRAY_AS
parameter.
|