Created
June 21, 2012 09:18
-
-
Save robertpi/2964793 to your computer and use it in GitHub Desktop.
F# record implementing an interface
This file contains 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
namespace MyNamespace | |
type IMyInterface = | |
abstract GetValue: unit -> string | |
type MyRecord = | |
{ MyField1: int | |
MyField2: string } | |
interface IMyInterface with | |
member x.GetValue() = x.MyField2 |
Thanks
Thumbs up !
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey man, thank you so much for this gist! When you search for "record interface implementation F#" this is the first result, and I can't tell you how often I'm coming back here to refresh my mind on the syntax. Just can't get over the fact that "interface _ with _" comes after the brackets and is soley controlled via indentation for some reason.