Operator operator >
operator >(SequencePointer<T>, SequencePointer<T>)
Compares two values to determine which is greater.
Declaration
public static bool operator >(SequencePointer<T> left, SequencePointer<T> right)
Parameters
| Type | Name | Description |
|---|---|---|
| SequencePointer<T> | left | The value to compare with |
| SequencePointer<T> | right | The value to compare with |
Returns
| Type | Description |
|---|---|
| bool |
operator >(SequencePointer<T>, NullablePointerReadOnly)
Compares two values to determine which is greater.
Declaration
public static bool operator >(SequencePointer<T> left, NullablePointerReadOnly right)
Parameters
| Type | Name | Description |
|---|---|---|
| SequencePointer<T> | left | The value to compare with |
| NullablePointerReadOnly | right | The value to compare with |
Returns
| Type | Description |
|---|---|
| bool |
operator >(SequencePointer<T>, NullablePointerUninitialized)
Compares two values to determine which is greater.
Declaration
public static bool operator >(SequencePointer<T> left, NullablePointerUninitialized right)
Parameters
| Type | Name | Description |
|---|---|---|
| SequencePointer<T> | left | The value to compare with |
| NullablePointerUninitialized | right | The value to compare with |
Returns
| Type | Description |
|---|---|
| bool |
operator >(NullablePointerReadOnly, SequencePointer<T>)
Compares two values to determine which is greater.
Declaration
public static bool operator >(NullablePointerReadOnly left, SequencePointer<T> right)
Parameters
| Type | Name | Description |
|---|---|---|
| NullablePointerReadOnly | left | The value to compare with |
| SequencePointer<T> | right | The value to compare with |
Returns
| Type | Description |
|---|---|
| bool |
operator >(NullablePointerUninitialized, SequencePointer<T>)
Compares two values to determine which is greater.
Declaration
public static bool operator >(NullablePointerUninitialized left, SequencePointer<T> right)
Parameters
| Type | Name | Description |
|---|---|---|
| NullablePointerUninitialized | left | The value to compare with |
| SequencePointer<T> | right | The value to compare with |
Returns
| Type | Description |
|---|---|
| bool |