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
Now rx.observables.BlockingObservable.last() returns null when the Observable is empty. However, null is a valid value in an Observable. So when last returns null, we can not make a distinction between these two situations. I think throwing an IndexOutOfBoundException is more reasonable.
The text was updated successfully, but these errors were encountered:
Now
rx.observables.BlockingObservable.last()
returnsnull
when the Observable is empty. However,null
is a valid value in an Observable. So whenlast
returnsnull
, we can not make a distinction between these two situations. I think throwing anIndexOutOfBoundException
is more reasonable.The text was updated successfully, but these errors were encountered: