Exemple #1
0
 public static T?ToNullable <T>(this Option <T> value) where T : struct
 {
     return(value.Transform(x => (T?)x).Else((T?)null));
 }