> For the complete documentation index, see [llms.txt](https://doc.moost.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.moost.io/platform-manual/rules/rule-language/functions/reverse.md).

# REVERSE

### Description

Reverses the entries. So if applying on ascending ordered data, you would get a descending ordered data set.

### REVERSE(Scalar\<any>)

```java
REVERSE(scalar: Scalar<any>): Scalar<any>
```

Reverse the order of the given Scalar\<any>

#### Parameters

<table><thead><tr><th width="172">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>scalar</td><td>A scalar of type any</td></tr></tbody></table>

#### Returns

Returns the given scalar in reversed order with type Scalar\<any>

### REVERSE(Vector\<any>)

```java
REVERSE(vector: Vector<any>): Vector<any>
```

Reverse the order of the elements in the given Vector\<any>

#### Parameters

<table><thead><tr><th width="172">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>vector</td><td>A vector of type any</td></tr></tbody></table>

#### Returns

Returns the given vector in reversed order with type Vector\<any>

***

### REVERSE(GroupedScalar\<any, any>)

```java
REVERSE(group: GroupedScalar<any,any>): GroupedScalar<any,any>
```

Reverse the order of the elements in the given GroupedScalar\<any, any>

#### Parameters

<table><thead><tr><th width="172">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>group</td><td>A GroupedScalar of type &#x3C;any, any></td></tr></tbody></table>

#### Returns

Returns the given group in reversed order with type GroupedScalar\<any, any>.

***

### REVERSE(GroupedVector\<any, any>)

```java
REVERSE(group: GroupedVector<any,any>): GroupedVector<any,any>
```

Reverse the order of the elements in the given GroupedVector\<any, any>

#### Parameters

<table><thead><tr><th width="172">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>group</td><td>A GroupedVector of type &#x3C;any, any></td></tr></tbody></table>

#### Returns

Returns the given group in reversed order with type GroupedVector\<any, any>.

### Examples

Reverse the elements in the GridPowerConsumption Vector.

```java
REVERSE($GridPowerConsumption)
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.moost.io/platform-manual/rules/rule-language/functions/reverse.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
