# Cell

`import { Cell } from "destack:memory";`

Interior mutable storage for copyable values.

```ds title="Cell"
export struct Cell<T> {
    storage: UnsafeCell<T>;
}
```

[language/library/src/memory/cell/cell.ds:32:35](https://github.com/destack-sh/destack/blob/main/language/library/src/memory/cell/cell.ds#L32-L35)

## Members

### `storage: UnsafeCell<T>`

The stored value storage.
