summaryrefslogtreecommitdiff
path: root/scalatexApi/src/main/scala/scalatex/Util.scala
blob: 3bf9553bdcbf2a8fdd70c86223f6b3a9a0a1eee7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package scalatex
import acyclic.file

object Util {

  implicit class Pipeable[T](t: T){
    def |>[V](f: T => V): V = f(t)
  }
}