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