Operator operator +
operator +(NullableSequencePointer<T>, nint)
Adds two values together to compute their sum.
Declaration
public static NullableSequencePointer<T> operator +(NullableSequencePointer<T> left, nint right)
Parameters
| Type | Name | Description |
|---|---|---|
| NullableSequencePointer<T> | left | The value to which |
| nint | right | The value that is added to |
Returns
| Type | Description |
|---|---|
| NullableSequencePointer<T> | The sum of |
operator +(NullableSequencePointer<T>, nuint)
Adds two values together to compute their sum.
Declaration
public static NullableSequencePointer<T> operator +(NullableSequencePointer<T> left, nuint right)
Parameters
| Type | Name | Description |
|---|---|---|
| NullableSequencePointer<T> | left | The value to which |
| nuint | right | The value that is added to |
Returns
| Type | Description |
|---|---|
| NullableSequencePointer<T> | The sum of |
operator +(nint, NullableSequencePointer<T>)
Adds two values together to compute their sum.
Declaration
public static NullableSequencePointer<T> operator +(nint left, NullableSequencePointer<T> right)
Parameters
| Type | Name | Description |
|---|---|---|
| nint | left | The value to which |
| NullableSequencePointer<T> | right | The value that is added to |
Returns
| Type | Description |
|---|---|
| NullableSequencePointer<T> | The sum of |
operator +(nuint, NullableSequencePointer<T>)
Adds two values together to compute their sum.
Declaration
public static NullableSequencePointer<T> operator +(nuint left, NullableSequencePointer<T> right)
Parameters
| Type | Name | Description |
|---|---|---|
| nuint | left | The value to which |
| NullableSequencePointer<T> | right | The value that is added to |
Returns
| Type | Description |
|---|---|
| NullableSequencePointer<T> | The sum of |