Created
February 20, 2018 10:40
-
-
Save nojaf/370d43d99a955c432c3b6d519e796a5e to your computer and use it in GitHub Desktop.
F# Cheatsheet
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
// Alias tuple | |
type XmlAddition = | |
| XmlElementAddition of parent: XPath * childNodeIndex:int * element: XElement | |
| XmlTextAddition of parent:XPath * textContent: string | |
| XmlAttributeAddition of node:XPath * attributeName:string * attributeValue:string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment