Struct InterlockedBoolean
A lightweight representation of an Interlocked (atomic) bool.
public struct InterlockedBoolean : IEquatable<InterlockedBoolean>, IComparable<InterlockedBoolean>, IComparable
- Implements
- Inherited Members
- Extension Methods
Constructors
InterlockedBoolean(bool)
Creates a new InterlockedBoolean instance.
public InterlockedBoolean(bool value)
Parameters
valueboolInitial value.
Properties
Value
Current value.
public bool Value { get; }
Property Value
Methods
CompareTo(InterlockedBoolean)
Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
[Pure]
public int CompareTo(InterlockedBoolean other)
Parameters
otherInterlockedBooleanAn object to compare with this instance.
Returns
- int
A value that indicates the relative order of the objects being compared. The return value has these meanings:
Value Meaning Less than zero This instance precedes otherin the sort order.Zero This instance occurs in the same position in the sort order as other.Greater than zero This instance follows otherin the sort order.
CompareTo(object?)
Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
[Pure]
public int CompareTo(object? obj)
Parameters
objobjectAn object to compare with this instance.
Returns
- int
A value that indicates the relative order of the objects being compared. The return value has these meanings:
Value Meaning Less than zero This instance precedes objin the sort order.Zero This instance occurs in the same position in the sort order as obj.Greater than zero This instance follows objin the sort order.
Exceptions
- ArgumentException
objis not the same type as this instance.
Equals(InterlockedBoolean)
Indicates whether the current object is equal to another object of the same type.
[Pure]
public bool Equals(InterlockedBoolean other)
Parameters
otherInterlockedBooleanAn object to compare with this object.
Returns
Equals(object?)
Indicates whether this instance and a specified object are equal.
[Pure]
public override bool Equals(object? obj)
Parameters
objobjectThe object to compare with the current instance.
Returns
- bool
true if
objand this instance are the same type and represent the same value; otherwise, false.
GetHashCode()
Returns the hash code for this instance.
[Pure]
public override int GetHashCode()
Returns
- int
A 32-bit signed integer that is the hash code for this instance.
ToString()
Returns a string representation of this InterlockedBoolean instance.
[Pure]
public override string ToString()
Returns
- string
String representation.
Toggle()
Toggles (negates) the current Value.
public bool Toggle()
Returns
Write(bool)
Sets Value to the provided value.
public bool Write(bool value)
Parameters
valueboolValue to set.
Returns
- bool
true when value has changed, otherwise false.
WriteFalse()
Sets Value to false.
public bool WriteFalse()
Returns
- bool
true when value has changed, otherwise false.
WriteTrue()
Sets Value to true.
public bool WriteTrue()
Returns
- bool
true when value has changed, otherwise false.
Operators
operator ==(InterlockedBoolean, InterlockedBoolean)
Checks if a is equal to b.
public static bool operator ==(InterlockedBoolean a, InterlockedBoolean b)
Parameters
aInterlockedBooleanFirst operand.
bInterlockedBooleanSecond operand.
Returns
- bool
true when operands are equal, otherwise false.
operator >(InterlockedBoolean, InterlockedBoolean)
Checks if a is greater than b.
public static bool operator >(InterlockedBoolean a, InterlockedBoolean b)
Parameters
aInterlockedBooleanFirst operand.
bInterlockedBooleanSecond operand.
Returns
- bool
true when
ais greater thanb, otherwise false.
operator >=(InterlockedBoolean, InterlockedBoolean)
Checks if a is greater than or equal to b.
public static bool operator >=(InterlockedBoolean a, InterlockedBoolean b)
Parameters
aInterlockedBooleanFirst operand.
bInterlockedBooleanSecond operand.
Returns
- bool
true when
ais greater than or equal tob, otherwise false.
operator !=(InterlockedBoolean, InterlockedBoolean)
Checks if a is not equal to b.
public static bool operator !=(InterlockedBoolean a, InterlockedBoolean b)
Parameters
aInterlockedBooleanFirst operand.
bInterlockedBooleanSecond operand.
Returns
- bool
true when operands are not equal, otherwise false.
operator <(InterlockedBoolean, InterlockedBoolean)
Checks if a is less than b.
public static bool operator <(InterlockedBoolean a, InterlockedBoolean b)
Parameters
aInterlockedBooleanFirst operand.
bInterlockedBooleanSecond operand.
Returns
- bool
true when
ais less thanb, otherwise false.
operator <=(InterlockedBoolean, InterlockedBoolean)
Checks if a is less than or equal to b.
public static bool operator <=(InterlockedBoolean a, InterlockedBoolean b)
Parameters
aInterlockedBooleanFirst operand.
bInterlockedBooleanSecond operand.
Returns
- bool
true when
ais less than or equal tob, otherwise false.