6 implementations of Union
Microsoft.CodeAnalysis.CSharp (6)
Utilities\ValueSetFactory.BoolValueSet.cs (1)
95IValueSet IValueSet.Union(IValueSet other) => this.Union((IValueSet<bool>)other);
Utilities\ValueSetFactory.EnumeratedValueSet.cs (1)
161IValueSet IValueSet.Union(IValueSet other) => Union((IValueSet<T>)other);
Utilities\ValueSetFactory.FloatingValueSet.cs (1)
126IValueSet IValueSet.Union(IValueSet other) => this.Union((IValueSet<TFloating>)other);
Utilities\ValueSetFactory.NintValueSet.cs (1)
120IValueSet IValueSet.Union(IValueSet other) => this.Union((NintValueSet)other);
Utilities\ValueSetFactory.NuintValueSet.cs (1)
104IValueSet IValueSet.Union(IValueSet other) => this.Union((NuintValueSet)other);
Utilities\ValueSetFactory.NumericValueSet.cs (1)
288IValueSet IValueSet.Union(IValueSet other) => this.Union((IValueSet<T>)other);
1 reference to Union
Microsoft.CodeAnalysis.CSharp (1)
Binder\DecisionDagBuilder.cs (1)
848var newExistingValuesForTemp = existingValuesForTemp.Union(valuesForTemp);