# RangeToInclusive

`import { RangeToInclusive } from "destack:range";`

Inclusive range to `..=end`.

```ds title="RangeToInclusive"
export struct RangeToInclusive<T> {
    end: T;
}
```

[language/library/src/range/range.ds:122:125](https://github.com/destack-sh/destack/blob/main/language/library/src/range/range.ds#L122-L125)

## Members

### `end: T`

The included end value.
