 | Result<T>.Equality Operator |
Namespace:
Akka.Util
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntaxpublic static bool operator ==(
Result<T> left,
Result<T> right
)
static let inline (=)
left : Result<'T> *
right : Result<'T> : bool
Parameters
- left
- Type: Akka.Util.Result<T>
The first Result< T> used for comparison - right
- Type: Akka.Util.Result<T>
The second Result< T> used for comparison
Return Value
Type:
Booleantrue if both
Result< T> are equal; otherwise
false
See Also