UnpackingResultTInequality Operator |
Compare two instances are not equal.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public static bool operator !=(
UnpackingResult<T> left,
UnpackingResult<T> right
)
Public Shared Operator <> (
left As UnpackingResult(Of T),
right As UnpackingResult(Of T)
) As Boolean
public:
static bool operator !=(
UnpackingResult<T> left,
UnpackingResult<T> right
)
static let inline (<>)
left : UnpackingResult<'T> *
right : UnpackingResult<'T> : bool
Parameters
- left
- Type: MsgPackUnpackingResultT
UnpackingResultT instance. - right
- Type: MsgPackUnpackingResultT
UnpackingResultT instance.
Return Value
Type:
Boolean
Whether value of
left and
right are not equal each other or are equal.
See Also