Delegate Slice<TState, TStoreState>.Selector<TSelected>
Definition of a Redux Selector for a Slice.
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public delegate TSelected Slice<TState, TStoreState>.Selector<out TSelected>(TState state)
Parameters
Type | Name | Description |
---|---|---|
TState | state | The state to select from. |
Returns
Type | Description |
---|---|
TSelected | The selected state. |
Type Parameters
Name | Description |
---|---|
TSelected | The type of the selected state. |