All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dotty.tools.dotc.util.chaining.scala Maven / Gradle / Ivy

There is a newer version: 3.7.2-RC1-bin-20250528-457a463-NIGHTLY
Show newest version

package dotty.tools.dotc.util

object chaining:

  extension [A](x: A)
    inline def tap(inline f: A => Unit): x.type = { f(x): Unit; x }
    inline def pipe[B](inline f: A => B): B = f(x)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy