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
If a source has no elements then elements from an `alternative` source
are emitted to the returned channel. If this source is failed then failure
is passed to the returned channel.
Examples:
Source.fromValues(1).orElse(Source.fromValues(2, 3)).toList // List(1)
Source.empty.orElse(Source.fromValues(2, 3)).toList // List(2, 3)
Closes#37.
If a source has no elements then elements from an `alternative` source
are emitted to the returned channel. If this source is failed then failure
is passed to the returned channel.
Examples:
Source.fromValues(1).orElse(Source.fromValues(2, 3)).toList // List(1)
Source.empty.orElse(Source.fromValues(2, 3)).toList // List(2, 3)
Closes#37.
If a source has no elements then elements from an `alternative` source
are emitted to the returned channel. If this source is failed then failure
is passed to the returned channel.
Examples:
Source.fromValues(1).orElse(Source.fromValues(2, 3)).toList // List(1)
Source.empty.orElse(Source.fromValues(2, 3)).toList // List(2, 3)
Closes#37.
No description provided.
The text was updated successfully, but these errors were encountered: