> ## Documentation Index
> Fetch the complete documentation index at: https://starkware-9575960b-agent-options.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# core::internal::OptionRev

Same as `Option`, except that the order of the variants is reversed.
This is used as the return type of some libfuncs for efficiency reasons.

## Signature

```rust
pub enum OptionRev {
    None,
    Some: T,
}
```

## Variants

### None

#### Signature

```rust
None
```

### Some

#### Signature

```rust
Some: T
```
