ForEach
Invokes function on all elements matching the query.
Read time 1 minuteLast updated 8 days ago
Definition
- Type: Method
- Namespace: UnityEngine.UIElements
- Assembly: UnityEngine.UIElementsModule
ForEach(Action<T>)
Invokes function on all elements matching the query.
public void ForEach(Action<T> funcCall)
Parameters
The action to be invoked with each matching element.
ForEach<T>(List<T>, Func<T, T>)
Invokes function on all elements matching the query.
public void ForEach<T2>(List<T2> result, Func<T, T2> funcCall)
Parameters
Each return value will be added to this list.
The function to be invoked with each matching element.
ForEach<T>(Func<T, T>)
Invokes function on all elements matching the query.
public List<T2> ForEach<T2>(Func<T, T2> funcCall)
Parameters
The action to be invoked with each matching element.
Returns
Type | Description |
|---|---|
| List<T> |