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
We were using postfixes to avoid inference problems around operator methods (such as fromIterable vs fromArray) but there is at least one operator currently, startWith, that may exhibit type ambiguity. A dedicated postfixed name should resolve the issue, such as:
That's just my two cents' worth I would opt for the option 3.
I think startWithJust could be confusing since other methods call just for example, range when the count value is one or fromArray when the length is one.
We were using postfixes to avoid inference problems around operator methods (such as
fromIterable
vsfromArray
) but there is at least one operator currently,startWith
, that may exhibit type ambiguity. A dedicated postfixed name should resolve the issue, such as:startWith(T)
+startWithIterable(Iterable<T>)
startWithItem(T)
+startWith(Iterable<T>)
+ removestartWith(T)
startWithItem(T)
+startWithIterable(Iterable<T>)
+ removestartWith(T)
.As a preparation, we can deprecate
startWith(T)
within 2.2.x in case option 2 or 3 is chosen.The text was updated successfully, but these errors were encountered: