| 01:07 | <rbuckton> | Sounds like what they want is F# pipes or the ability to supply tacit unary functions. I still prefer F#-style, tbh, and I think it would have been easier to advance if we'd pushed back on supporting await and yield (e.g., (await (x |> y)) |> z) and just clarified the precedence of |> vs. => |
| 16:12 | <TabAtkins> | By "pushed back on" do you mean "didn't support" or "required support for"? Because "fixing" the await syntax is one of the biggest arguments for pipeline, imo. |
| 17:03 | <ljharb> | F# style still wouldn't be a world where it'd make sense for a function to be able to detect whether it was called inside a pipeline or not. |
| 18:09 | <rbuckton> | F# style still wouldn't be a world where it'd make sense for a function to be able to detect whether it was called inside a pipeline or not. this-like binding mechanism. |
| 18:21 | <rbuckton> | By "pushed back on" do you mean "didn't support" or "required support for"? Because "fixing" the => event without partial application. And partial application solved the leading/trailing context argument concern without needing to complicate lexical scoping as well. |