Comment on TC39 Pipeline Operator – Hack vs. F#parentComments−dtech4yThis is sort-of how Scala does it. _ in the context of a lambda means "the next argument", so it is general: val plus: (Int, Int) => Int = _ + _
Comments
This is sort-of how Scala does it. _ in the context of a lambda means "the next argument", so it is general: