> 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/taskresultoption/operators.md).

# Operators

### TaskResultOption Infix Operators

Namespace: `FsToolkit.ErrorHandling.Operator.TaskResultOption`

FsToolkit.ErrorHandling provides the standard infix operators for the `map` (`<!>`), `apply` (`<*>`), and `bind` (`>>=`) functions of the `Result<'T option, 'E>` type.

### Examples

#### Example 1

The [TaskResultOption map2 example](/fstoolkit-errorhandling/fstoolkit.errorhandling/taskresultoption/map2.md#example-1) can be written using operators like this:

```fsharp
open FsToolkit.ErrorHandling.Operator.TaskResult

// Task<Result<UserTweet option, Exception>>
userTweet 
<!> (getPostById samplePostId) 
<*> (getUserById sampleUserId)
```
