REVERSE
Description
Reverses the entries. So if applying on ascending ordered data, you would get a descending ordered data set.
REVERSE(Scalar<any>)
Reverse the order of the given Scalar<any>
Parameters
Parameter | Description |
---|---|
scalar | A scalar of type any |
Returns
Returns the given scalar in reversed order with type Scalar<any>
REVERSE(Vector<any>)
Reverse the order of the elements in the given Vector<any>
Parameters
Parameter | Description |
---|---|
vector | A vector of type any |
Returns
Returns the given vector in reversed order with type Vector<any>
REVERSE(GroupedScalar<any, any>)
Reverse the order of the elements in the given GroupedScalar<any, any>
Parameters
Parameter | Description |
---|---|
group | A GroupedScalar of type <any, any> |
Returns
Returns the given group in reversed order with type GroupedScalar<any, any>.
REVERSE(GroupedVector<any, any>)
Reverse the order of the elements in the given GroupedVector<any, any>
Parameters
Parameter | Description |
---|---|
group | A GroupedVector of type <any, any> |
Returns
Returns the given group in reversed order with type GroupedVector<any, any>.
Examples
Reverse the elements in the GridPowerConsumption Vector.
Last updated