diff --git a/spec.bs b/spec.bs index 9cdd6be..40121ff 100644 --- a/spec.bs +++ b/spec.bs @@ -465,6 +465,89 @@ callback). The return value of {{EventTarget/on()}} is an example of the latter. For now, see [https://github.com/wicg/observable#operators](https://github.com/wicg/observable#operators). +

{{Observable/from()}}

+ +

Spec the exact semantics of {{Observable/from()}} conversion.

+ +

{{Observable}}-returning operators

+ +
+ The takeUntil(|notifier|) method steps are: + + 1. TODO: Spec this and use |notifier|. +
+ +
+ The map(|mapper|) method steps are: + + 1. TODO: Spec this and use |mapper|. +
+ +
+ The filter(|predicate|) method steps are: + + 1. TODO: Spec this and use |predicate|. +
+ +
+ The take(|amount|) method steps are: + + 1. TODO: Spec this and use |amount|. +
+ +
+ The drop(|amount|) method steps are: + + 1. TODO: Spec this and use |amount|. +
+ +
+ The flatMap(|mapper|) method steps are: + + 1. TODO: Spec this and use |mapper|. +
+ + +

{{Promise}}-returning operators

+ +
+ The toArray(|options|) method steps are: + + 1. TODO: Spec this and use |options|. +
+ +
+ The forEach(|callback|, |options|) method steps are: + + 1. TODO: Spec this and use |callback| and |options|. +
+ +
+ The every(|predicate|, |options|) method steps are: + + 1. TODO: Spec this and use |predicate| and |options|. +
+ +
+ The find(|predicate|, |options|) method steps are: + + 1. TODO: Spec this and use |predicate| and |options|. +
+ +
+ The some(|predicate|, |options|) method steps are: + + 1. TODO: Spec this and use |predicate| and |options|. +
+ +
+ The reduce(|reducer|, |initialValue|, |options|) + method steps are: + + 1. TODO: Spec this and use |reducer|, |initialValue|, and |options|. +
+ +

{{EventTarget}} integration