Interface IIncrementer<TNumber>
Defines an incrementer that increments any number with a specific type.
Определяет инкрементер, который выполняет приращение любого числа определенного типа.
Namespace: Platform.Incrementers
Assembly: Platform.Incrementers.dll
Syntax
public interface IIncrementer<TNumber>
Type Parameters
Name | Description |
---|---|
TNumber | Type of incremented number. Тип увеличиваемого числа. |
Methods
| Improve this Doc View SourceIncrement(TNumber)
Increments the number by a specific value.
Увеличивает число на определённое значение.
Declaration
TNumber Increment(TNumber number)
Parameters
Type | Name | Description |
---|---|---|
TNumber | number | The number to be incremented. Увеличиваемое число. |
Returns
Type | Description |
---|---|
TNumber | The incremented number. Увеличенное число. |