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
| public abstract class Option<TValue> where TValue : struct | |
| { | |
| protected TValue? value; | |
| } | |
| public class Some<TValue> : Option<TValue> where TValue : struct { | |
| public TValue Value => value.Value; | |
| public Some(TValue input) | |
| { |
OlderNewer