Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/FSharp.SystemTextJson/Skippable.fs
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,8 @@ type Skippable<'T> with
/// Transforms the input using the specified function.
static member (<!>)(f, skippable) =
Skippable.map f skippable

/// Infix operator for Skippable.bind.
/// Applies the Skippable-returning function to the Skippable-wrapped value.
static member (>>=)(skippable, f) =
Skippable.bind f skippable