0.2.0 - Mar 23, 2022 #57
hoc081098
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
https://pub.dev/packages/rxdart_ext/versions/0.2.0
utils:
DisposableMixin
. This mixin adds an easy option to dispose Streams without having to storea
StreamSubscription
variable. (Thanks to Jop Middelkamp).Equality
typedef.state_stream:
StateStream.defaultEquals
toStateStream.defaultEquality
.StateStream
selectors (SelectorsStateStreamExtensions
):StateStream.select
,StateStream.select2
to
StateStream.select9
and
StateStream.selectMany
.by NgRx memoized selector
select
,select2
toselect9
,selectMany
functions, keeps track of the latest argumentsin which your selector function was invoked. Because selectors are pure functions, the last result can be
returned when the arguments match without re-invoking your selector function. This can provide performance
benefits, particularly with selectors that perform expensive computation. This practice is known as
memoization.
What's Changed
New Contributors
Full Changelog: 0.1.3...0.2.0
This discussion was created from the release 0.2.0 - Mar 23, 2022.
Beta Was this translation helpful? Give feedback.
All reactions