Created
October 14, 2022 16:40
-
-
Save Savelenko/c2b5a6e6e7ff935a2542513994aea620 to your computer and use it in GitHub Desktop.
Pete wrapper and bind
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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