Last active
December 5, 2015 19:52
-
-
Save corajr/2fab59ced37e4c93c4c6 to your computer and use it in GitHub Desktop.
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
| let withDefault (defaultVal: 'a, x : 'a option) = | |
| match x with | |
| | Some(xVal) -> xVal | |
| | None -> defaultVal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment