> For the complete documentation index, see [llms.txt](https://demystifyfp.gitbook.io/fstoolkit-errorhandling/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://demystifyfp.gitbook.io/fstoolkit-errorhandling/fstoolkit.errorhandling/option/transforms/tovalueoption.md).

# toValueOption

Namespace: `FsToolkit.ErrorHandling`

Transforms a `'T Option` value to `'T voption`.

## Function Signature

```fsharp
'T Option -> 'T voption
```

## Examples

### Example 1

```fsharp
let opt = Option.toValueOption (Some 1)
// Some 1
```

### Example 2

```fsharp
let opt = Option.toValueOption None
// None
```
