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
Optional of T { | |
None, //There is nothing here. Empty. Nada. | |
Some(T) //We have an item T | |
} | |
//Examples | |
let myOption = Some(5); // Some(int32) | |
let myOption = Some("Rodents of unusual size. I don't believe they exist"); // Some(String) | |
let myOption = None; // We got nothing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment