Some languages like F#, Rescript, have a pipeline forward operator, there is also an Emacscript proposal, is there any change something like that goes standard library? works nicely with curried functions
/** Pipeline operator */
extension [A, B](a: A)
infix def |>(f: A => B): B = f(a)
val triple = (x: Int) => 3 * x
val half = (x: Int) => x / 2
val sum = (x: Int) => (y: Int) => x + y
/** Instead of */
val classic = half(sum(triple(3))(2))
/** Pipe the functions */
val piped = 3
|> triple
|> sum(2) // curried
|> half
I like the Style Guide, as overusing symbolic names makes code IMO harder to understand if you donāt use the operators daily or are a beginner - a good name says more than a good symbol(s).
If the Style Guide applies to this case is an open question for me, just wanted to link the Style Guide here.
I also would prefer an operator such as |> for pipe. I think the operator is by now common enough to be easily recognizable. And the advantage is its an operator, so it can be written at the start of a new line without needing a . in front.
This summer someone proposed adding the operator in Haskell. The discussion was very involved: Add the ā|>ā pipe operator
TLDR:
Altogether we have 2 votes in favor, 3 votes against, and chessai is on a temporary leave (#82). Even if he votes in favor, we still fall short of 4 votes required to approve the proposal. Thanks all for the discussion (and foremost to @chshersh), unfortunately, the proposal is declined.
In case this is added, then I hope that the operator |> will still be free for our own DSLās. For example by making |> available as import extension just like pipe, and not a generic operator on all types by default. That would for example interfere with my DSL, which has operators like |>, |+ etc.
BTW, i have also defined a pipe operator for every day use long ago (probably like many others). The: | (modelled after the bash pipe operator). Imho this is just as readable, and simpler:
The last response is most useful, indeed. Thatās a clever idea, for shift-enter in REPL to go into pipeline mode.
Iām not a fan of declaring āyou canāt use this feature because it hurts performance unless you use knobs or maybe it doesnāt matter.ā There are plenty of cases where JVM performance was affected for various reasons one would prefer not to care about.
import scala.util.chaining._
final class C {
def s = "hello, world"
def f = s pipe len
def len(x: String) = x.length
}
In Scala 2, -opt:inline results in
public int f();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
0: getstatic #27 // Field scala/util/ChainingOps$.MODULE$:Lscala/util/ChainingOps$;
3: pop
4: getstatic #30 // Field scala/util/package$chaining$.MODULE$:Lscala/util/package$chaining$;
7: pop
8: ldc #17 // String hello, world
10: invokevirtual #35 // Method java/lang/String.length:()I
13: ireturn
I think there is also a lever for mitigating module loads?
Iām a big fan of expr.tap(init(_)) where itās obvious up front what Iām getting and that some side effects happen by the way. Often it also saves braces.
True, although those applications would not interfere i guess. But besides that, i defined the operator long before it was defined as type union and use it all over the place. This can be an issue with other new operators and keywords that are defined later on as well. That people already have them in use for something else. (enum anyone? )
Anyway, i donāt say the | operator is better or so, the only thing i would like is that new operators are not āimported by defaultā, thereby interfering with DSLās.
In Scala 3, inline in the source takes care of (at least most of) it. I have yet to find a case where the following is slower than writing things out by hand in microbenchmarks.
extension [A](a: A) {
inline def pipe[B](inline f: A => B): B = f(a)
}
Hello. Iām very new to Scala, recently coming from F# where the |> operator is prevalent. Iād like to cast my vote against adding the |> operator to Scala because it would be inconsistent with . chaining.
In F#, the constant battle between the two styles of |> and . was driving me crazy. There is even a library called FSharp.Core.Fluent (that I also contributed to) that adds . methods to the core collections. Instinctively, I suggested a .pipe method for this library even before I knew that it existed in Scala.
The main problem with |> is the lack of IDE support for code completion. This is why, in my opinion, . is a better way to chain methods.
In conclusion, I would not like to see |> in Scala. The regularity of using . chaining is what appeals to me about Scala as a newcomer.