2 references to SumType
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Protocol\SumType.cs (2)
77public static implicit operator SumType<T1, T2>(T2 val) => new SumType<T1, T2>(val); 83public static implicit operator SumType<T1, T2>?(T2? val) => val is null ? null : new SumType<T1, T2>(val);