Operator operator !=
operator !=(SymbolicTensorDim, SymbolicTensorDim)
Determines whether two 'SymbolicTensorDim' objects are not equal.
Declaration
public static bool operator !=(SymbolicTensorDim a, SymbolicTensorDim b)
Parameters
Type | Name | Description |
---|---|---|
SymbolicTensorDim | a | The first 'SymbolicTensorDim' to compare. |
SymbolicTensorDim | b | The second 'SymbolicTensorDim' to compare. |
Returns
Type | Description |
---|---|
bool | Whether the two 'SymbolicTensorDim' objects are not equal. |
operator !=(SymbolicTensorDim, int)
Determines whether a 'SymbolicTensorDim' is not equal to a value.
Declaration
public static bool operator !=(SymbolicTensorDim a, int b)
Parameters
Type | Name | Description |
---|---|---|
SymbolicTensorDim | a | The 'SymbolicTensorDim' to compare. |
int | b | The integer value to compare. |
Returns
Type | Description |
---|---|
bool | Whether the 'SymbolicTensorDim' object is not equal to the value. |
operator !=(int, SymbolicTensorDim)
Determines whether a 'SymbolicTensorDim' is not equal to a value.
Declaration
public static bool operator !=(int a, SymbolicTensorDim b)
Parameters
Type | Name | Description |
---|---|---|
int | a | The integer value to compare. |
SymbolicTensorDim | b | The 'SymbolicTensorDim' to compare. |
Returns
Type | Description |
---|---|
bool | Whether the 'SymbolicTensorDim' object is not equal to the value. |