5 references to SumType
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Handler\Hover\HoverHandler.cs (1)
124Contents = new SumType<string, MarkedString, SumType<string, MarkedString>[], MarkupContent>(string.Empty),
Protocol\SumType.cs (4)
573public static implicit operator SumType<T1, T2, T3, T4>(T1 val) => new SumType<T1, T2, T3, T4>(val); 579public static implicit operator SumType<T1, T2, T3, T4>?(T1? val) => val is null ? null : new SumType<T1, T2, T3, T4>(val); 623(v) => new SumType<T1, T2, T3, T4>(v), 632(v) => new SumType<T1, T2, T3, T4>(v),