We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5acf8ac commit 3c7b008Copy full SHA for 3c7b008
compat/src/main/scala-2.11_2.12/scala/util/ChainingOps.scala
@@ -16,6 +16,11 @@ trait ChainingSyntax {
16
@`inline` implicit final def scalaUtilChainingOps[A](a: A): ChainingOps[A] = new ChainingOps(a)
17
}
18
19
+/**
20
+ * Adds chaining methods `tap` and `pipe` to every type. See [[ChainingOps]].
21
+ */
22
+object chaining extends ChainingSyntax
23
+
24
/** Adds chaining methods `tap` and `pipe` to every type.
25
*/
26
final class ChainingOps[A](private val self: A) extends AnyVal {
compat/src/main/scala-2.11_2.12/scala/util/package.scala
0 commit comments