Browse Source

Update documentation;

bjorn 10 years ago
parent
commit
ab0ff5e02a
1 changed files with 42 additions and 0 deletions
  1. 42 0
      doc/README.md

+ 42 - 0
doc/README.md

@@ -196,6 +196,48 @@ Returns:
 
 - `Observable`
 
+---
+
+#### `:takeUntil(other)`
+
+Returns a new Observable that completes when the specified Observable fires.
+
+Arguments:
+
+- `other` (`Observable`) - The Observable that triggers completion of the original.
+
+Returns:
+
+- `Observable`
+
+---
+
+#### `:filter(predicate)`
+
+Returns a new Observable that only produces values of the first that satisfy a predicate.
+
+Arguments:
+
+- `predicate` (`function`) - The predicate to filter values with.
+
+Returns:
+
+- `Observable`
+
+---
+
+#### `:pluck(key)`
+
+Returns a new Observable that produces values computed by extracting the given key from the tables produced by the original.
+
+Arguments:
+
+- `key` (`function`) - The key to extract from the table.
+
+Returns:
+
+- `Observable`
+
 # Scheduler
 
 Schedulers manage groups of Observables.