Reactivemongo - |>>> 运算符在哪里定义?

Reactivemongo - where is |>>> operator defined?

阅读 http://reactivemongo.org/releases/0.11/documentation/tutorial/consume-streams.html 它说

The apply method on Enumerator has an operator alias, |>>>. So we can rewrite the last line like this: enumeratorOfPeople |>>> processDocuments.

此运算符在 API 文档中的何处定义?

阅读 https://www.playframework.com/documentation/2.0/api/scala/play/api/libs/iteratee/Enumerator$.html 定义应用为:

def
apply [E] (in: E*): Enumerator[E]
Create an Enumerator from a set of values

但没有提到 |>>> 运算符 ?

好像打错了。

apply is called |>>. |>>> 的别名略有不同。

注意:您正在查看 Enumerator object. You need to look at the Enumerator trait 的文档。此外,您正在查看过时的文档 (2.0)。

Scaladoc 的左上角有一个图标,告诉您正在查看的内容:

  • class
  • class 带有伴随对象(点击切换)
  • 特质
  • 具有伴随对象的特征(点击切换)
  • 对象
  • class 的伴生对象(点击切换)
  • 特性的伴随对象(点击切换)
  • 抽象类型的伴生对象(点击切换)
  • 包裹
  • 抽象类型
  • 带有伴生对象的抽象类型(点击切换)