1 write to _isRelative
Microsoft.Maui (1)
Layouts\FlexEnums.cs (1)
91
_isRelative
= isRelative;
5 references to _isRelative
Microsoft.Maui (5)
Layouts\FlexEnums.cs (5)
79
internal bool IsAuto => !_isLength && !
_isRelative
;
80
internal bool IsRelative =>
_isRelative
;
98
public bool Equals(FlexBasis other) => _isLength == other._isLength &&
_isRelative
== other.
_isRelative
&& Length == other.Length;
102
public override int GetHashCode() =>
_isRelative
.GetHashCode() ^ Length.GetHashCode();