# Into

`import { Into } from "destack:convert";`

Infallible conversion into `T`.

```ds title="Into"
export newtype interface Into<T> {
    into(): T;
}
```

[language/library/src/convert/into.ds:7:10](https://github.com/destack-sh/destack/blob/main/language/library/src/convert/into.ds#L7-L10)

## Members

### `into(): T`

Convert this value.
