|
@@ -12,6 +12,7 @@
|
|
- [subscribe](#subscribeonnext-onerror-oncomplete)
|
|
- [subscribe](#subscribeonnext-onerror-oncomplete)
|
|
- [dump](#dumpname)
|
|
- [dump](#dumpname)
|
|
- [combineLatest](#combinelatestobservables-combinator)
|
|
- [combineLatest](#combinelatestobservables-combinator)
|
|
|
|
+ - [compact](#compact)
|
|
- [concat](#concatsources)
|
|
- [concat](#concatsources)
|
|
- [distinct](#distinct)
|
|
- [distinct](#distinct)
|
|
- [filter](#filterpredicate)
|
|
- [filter](#filterpredicate)
|
|
@@ -209,6 +210,16 @@ Returns:
|
|
|
|
|
|
---
|
|
---
|
|
|
|
|
|
|
|
+#### `:compact()`
|
|
|
|
+
|
|
|
|
+Returns a new Observable that produces the values of the first with falsy values removed.
|
|
|
|
+
|
|
|
|
+Returns:
|
|
|
|
+
|
|
|
|
+- `Observable`
|
|
|
|
+
|
|
|
|
+---
|
|
|
|
+
|
|
#### `:concat(sources)`
|
|
#### `:concat(sources)`
|
|
|
|
|
|
Returns a new Observable that produces the values produced by all the specified Observables in the order they are specified.
|
|
Returns a new Observable that produces the values produced by all the specified Observables in the order they are specified.
|