瀏覽代碼

Update documentation;

bjorn 10 年之前
父節點
當前提交
ab0ff5e02a
共有 1 個文件被更改,包括 42 次插入0 次删除
  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.