Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit a71c8fa

Browse files
committed
Update concatmap.md
1 parent 4e7c07f commit a71c8fa

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

doc/api/core/operators/concatmap.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
### `Rx.Observable.prototype.concatMap(selector, [resultSelector])`
2-
### `Rx.Observable.prototype.selectConcat(selector, [resultSelector])`
1+
### `Rx.Observable.prototype.concatMap(selector, [resultSelector], [thisArg])`
2+
### `Rx.Observable.prototype.selectConcat(selector, [resultSelector], [thisArg])`
33
[Ⓢ]((https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/concatmap.js "View in source")
44

55
This is an alias for the `selectConcat` method. This can be one of the following:
@@ -40,6 +40,8 @@ source.concatMap([1,2,3]);
4040
3. the index of the outer element
4141
4. the index of the inner element
4242

43+
3. `[thisArg]` *(`Any`)*: If `resultSelector` is not `Function`, Object to use as `this` when executing `selector`.
44+
4345
#### Returns
4446
*(`Observable`)*: An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.
4547

0 commit comments

Comments
 (0)