You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removed the <TKey: Hashable> Generics from all implementations of KeyedObservable
KeyedObservable now has <TKey: Hashable> applied to applicable respective funcs
KeyedObservable Implementations now use AnyHashable for internal members related to Keys.
for: Parameter of KeyedObservablefuncs has become key: for individual Keys, and keys: for Arrays of Keys. This is because an Array is itself a Hashable type, and causes ambiguity with func overloading.
Fixe for ObservableThread and ObservableThreadSafeClass whereby items in the pending queues would never be removed, and would never be added due to a foolish mistake of mine.