1 write to _hasSmall
Microsoft.CodeAnalysis.CSharp (1)
Utilities\ValueSetFactory.NintValueSet.cs (1)
41_hasSmall = hasSmall;
14 references to _hasSmall
Microsoft.CodeAnalysis.CSharp (14)
Utilities\ValueSetFactory.NintValueSet.cs (14)
26/// distinguish one such value from another. The flag <see cref="_hasSmall"/> is true when the set is considered 46public bool IsEmpty => !_hasSmall && !_hasLarge && _values.IsEmpty; 69if (_hasSmall && relation switch { GreaterThan => true, GreaterThanOrEqual => true, _ => false }) 78if (_hasSmall && relation switch { LessThan => true, LessThanOrEqual => true, _ => false }) 90hasSmall: !this._hasSmall, 102hasSmall: this._hasSmall && other._hasSmall, 114hasSmall: this._hasSmall || other._hasSmall, 123this._hasSmall == other._hasSmall && 128Hash.Combine(this._hasSmall.GetHashCode(), Hash.Combine(this._hasLarge.GetHashCode(), this._values.GetHashCode())); 134if (_hasSmall) 136if (_hasSmall && !_values.IsEmpty)