6 implementations of Intersect
Microsoft.CodeAnalysis.CSharp (6)
Utilities\ValueSetFactory.BoolValueSet.cs (1)
85
public IValueSet
Intersect
(IValueSet other) => this.Intersect((IValueSet<bool>)other);
Utilities\ValueSetFactory.EnumeratedValueSet.cs (1)
138
IValueSet IValueSet.
Intersect
(IValueSet other) => Intersect((IValueSet<T>)other);
Utilities\ValueSetFactory.FloatingValueSet.cs (1)
111
IValueSet IValueSet.
Intersect
(IValueSet other) => this.Intersect((IValueSet<TFloating>)other);
Utilities\ValueSetFactory.NintValueSet.cs (1)
108
IValueSet IValueSet.
Intersect
(IValueSet other) => this.Intersect((NintValueSet)other);
Utilities\ValueSetFactory.NuintValueSet.cs (1)
93
IValueSet IValueSet.
Intersect
(IValueSet other) => this.Intersect((NuintValueSet)other);
Utilities\ValueSetFactory.NumericValueSet.cs (1)
237
IValueSet IValueSet.
Intersect
(IValueSet other) => this.Intersect((IValueSet<T>)other);
6 references to Intersect
Microsoft.CodeAnalysis.CSharp (6)
Binder\DecisionDagBuilder.cs (5)
939
currentValues = currentValues.
Intersect
(targetValues);
1166
fromTestPassing = fromTestPassing.
Intersect
(tempValuesBeforeTest);
1167
fromTestFailing = fromTestFailing.
Intersect
(tempValuesBeforeTest);
2257
if (lengthValues.
Intersect
(possibleValues).IsEmpty)
2259
if (lengthValues.Complement().
Intersect
(possibleValues).IsEmpty)
Binder\PatternExplainer.cs (1)
619
remainingValues = remainingValues.
Intersect
(filtered);