Class FastAction<A, B, C>
Alternative Action delegate with increased performance when adding or removing delegates.
Inherited Members
Namespace: TMPro
Assembly: Unity.TextMeshPro.dll
Syntax
public class FastAction<A, B, C>
Type Parameters
Name | Description |
---|---|
A | The first parameter of the method that this delegate encapsulates. |
B | The second parameter of the method that this delegate encapsulates. |
C | The third parameter of the method that this delegate encapsulates. |
Methods
Add(Action<A, B, C>)
Declaration
public void Add(Action<A, B, C> rhs)
Parameters
Type | Name | Description |
---|---|---|
Action<A, B, C> | rhs |
Call(A, B, C)
Declaration
public void Call(A a, B b, C c)
Parameters
Type | Name | Description |
---|---|---|
A | a | |
B | b | |
C | c |
Remove(Action<A, B, C>)
Declaration
public void Remove(Action<A, B, C> rhs)
Parameters
Type | Name | Description |
---|---|---|
Action<A, B, C> | rhs |