Rx.Observable.prototype.let(func)
Returns an observable sequence that is the result of invoking the selector on the source sequence, without sharing subscriptions.
This operator allows for a fluent style of writing queries that use the same sequence multiple times. There is an alias of letBind
for browsers older than IE 9.
Arguments
func
(Function
): Selector function which can use the source sequence as many times as needed, without sharing subscriptions to the source sequence.
Returns
(Observable
): An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
Example
var obs = Rx.Observable.range(1, 3);
var source = obs.let(function (o) { return o.concat(o); });
var subscription = source.subscribe(
function (x) {
console.log('Next: ' + x);
},
function (err) {
console.log('Error: ' + err);
},
function () {
console.log('Completed');
});
// => Next: 1
// => Next: 2
// => Next: 3
// => Next: 1
// => Next: 2
// => Next: 3
// => Completed
Location
File:
Dist:
Prerequisites:
NPM Packages:
NuGet Packages:
Unit Tests: