File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1+ ## 2.2.0 - May 1, 2021
2+
3+ - Stable release for null safety.
4+
15## 2.2.0-nullsafety.2 - Feb 9, 2021
26- Add ` Selector ` s: ` select ` , ` select2 ` , ..., ` select9 ` and ` selectMany ` .
37 - Selectors can compute derived data, allowing Redux to store the minimal possible state.
48 - Selectors are efficient. A selector is not recomputed unless one of its arguments changes.
59 - When using the ` select ` , ` select2 ` to ` select9 ` , ` selectMany ` functions,
610 keeps track of the latest arguments in which your selector function was invoked.
711 Because selectors are pure functions, the last result can be returned
8- when the arguments match without reinvoking your selector function.
12+ when the arguments match without re-invoking your selector function.
913 This can provide performance benefits, particularly with selectors that perform expensive computation.
1014 This practice is known as memoization.
1115
You can’t perform that action at this time.
0 commit comments