Class TweakerExtensions
Extension methods for the Tweaker class.
Inheritance
System.Object
TweakerExtensions
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public static class TweakerExtensions
Methods
| Improve this DocAdjust<T>(T, Func<T, T>)
Adjust the specified value with the function delegate tweaker.
Declaration
public static T Adjust<T>(this T value, Func<T, T> tweaker)
Parameters
| Type | Name | Description |
|---|---|---|
| T | value | The value to adjust. |
| System.Func<T, T> | tweaker | The function delegate that will adjust the specified |
Returns
| Type | Description |
|---|---|
| T | The |
Type Parameters
| Name | Description |
|---|---|
| T | The type of the value to adjust. |