Here I try to implement a simple pipe forward operator similar to |> operator in Elixir or the andThen operator in Scala
Let's say you have a need for doing something like this
val x = f("something")
val y = g(x)
val z = h(y)
This is also equivalent to saying: