Skip to content

Instantly share code, notes, and snippets.

@Savelenko
Created October 14, 2022 16:40
Show Gist options
  • Save Savelenko/c2b5a6e6e7ff935a2542513994aea620 to your computer and use it in GitHub Desktop.
Save Savelenko/c2b5a6e6e7ff935a2542513994aea620 to your computer and use it in GitHub Desktop.
Pete wrapper and bind
type Pete<'T> (wrapped : 'T) =
member this.Bind (binder : 'T -> Pete<'U>) : Pete<'U> =
binder wrapped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment