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). +
Spec the exact semantics of {{Observable/from()}} conversion.
+ +takeUntil(|notifier|)
method steps are:
+
+ 1. TODO: Spec this and use |notifier|.
+map(|mapper|)
method steps are:
+
+ 1. TODO: Spec this and use |mapper|.
+filter(|predicate|)
method steps are:
+
+ 1. TODO: Spec this and use |predicate|.
+take(|amount|)
method steps are:
+
+ 1. TODO: Spec this and use |amount|.
+drop(|amount|)
method steps are:
+
+ 1. TODO: Spec this and use |amount|.
+flatMap(|mapper|)
method steps are:
+
+ 1. TODO: Spec this and use |mapper|.
+toArray(|options|)
method steps are:
+
+ 1. TODO: Spec this and use |options|.
+forEach(|callback|, |options|)
method steps are:
+
+ 1. TODO: Spec this and use |callback| and |options|.
+every(|predicate|, |options|)
method steps are:
+
+ 1. TODO: Spec this and use |predicate| and |options|.
+find(|predicate|, |options|)
method steps are:
+
+ 1. TODO: Spec this and use |predicate| and |options|.
+some(|predicate|, |options|)
method steps are:
+
+ 1. TODO: Spec this and use |predicate| and |options|.
+reduce(|reducer|, |initialValue|, |options|)
+ method steps are:
+
+ 1. TODO: Spec this and use |reducer|, |initialValue|, and |options|.
+