The beauty (and horror) of Ruby is that you can do almost anything with it. I think this is a really interesting and clever use of the "can do anything" aspect of Ruby, although I think I'd prefer not to run into it in a production app.
Still, it's really cool to see how far we can push/mold the language to accomplish different tasks and patterns.
I've had a look at threading/piping operators in a few languages (list below). I'd say that Racket has the best one I've used. I love that you can specify a '_' for the hole which the result from the previous operation will fill. Julia's threading macro is surprisingly brittle, only letting you chain single-argument functions unless you want to use anonymous functions with one bound variable and the rest free.
> Julia's threading macro is surprisingly brittle, only letting you chain single-argument functions
Julia's threading/piping is surprisingly limited, but the phrasing here (combined with the link) could make things confusing to a Julia beginner. So to make things clear:
* The linked page is talking about an external Julia package which provides a macro. And that macro lets you use the `_` syntax similar to what you describe Racket as having.
* Julia's default inbuilt piping syntax is the one with the single-argument limitation, and that's an operator, not a macro.
There's been a lot of discussion about bringing the `_` syntax or something like it to the base language, but there seem to be implementation difficulties. [1]
This page is talking about magrittr piping (which is probably still the most popular), but base R also got inbuilt piping syntax with version 4.1. It automatically passes the piped-in value as the first argument to the subsequent function. [2] [3]
> I'd say that Racket has the best one I've used. I love that you can specify a '_' for the hole which the result from the previous operation will fill.
"https://api.github.com/repos/ruby/ruby".pipe do
URI.parse
Net::HTTP.get
JSON.parse.fetch("stargazers_count")
yield_self { |n| "Ruby has #{n} stars" }
Kernel.puts
end
#=> Ruby has 15120 stars
While not as thorough solution as mentioned here in comments, UFCS goes a long way in this direction. In Next Generation Shell, I've designed the methods so that the first parameter is something that is likely to come from "the pipeline". Hence mylist.filter(...).map(...) just work. Combined with multiple dispatch and the fact that methods don't belong to a particular type/class, it allows creating user-defined methods with same convention to work with any existing and new types/classes.
[+] [-] bwilliams|3 years ago|reply
Still, it's really cool to see how far we can push/mold the language to accomplish different tasks and patterns.
[+] [-] joeman1000|3 years ago|reply
+ Haskell :: https://www.schoolofhaskell.com/user/Gabriel439/Pipes%20tuto...
+ Racket :: https://docs.racket-lang.org/threading/index.html
+ Clojure :: https://clojure.org/guides/threading_macros
+ Julia :: https://syl1.gitbook.io/julia-language-a-concise-tutorial/us...
+ R :: https://r4ds.had.co.nz/pipes.html
[+] [-] sundarurfriend|3 years ago|reply
Julia's threading/piping is surprisingly limited, but the phrasing here (combined with the link) could make things confusing to a Julia beginner. So to make things clear:
* The linked page is talking about an external Julia package which provides a macro. And that macro lets you use the `_` syntax similar to what you describe Racket as having.
* Julia's default inbuilt piping syntax is the one with the single-argument limitation, and that's an operator, not a macro.
There's been a lot of discussion about bringing the `_` syntax or something like it to the base language, but there seem to be implementation difficulties. [1]
> +R :: https://r4ds.had.co.nz/pipes.html
This page is talking about magrittr piping (which is probably still the most popular), but base R also got inbuilt piping syntax with version 4.1. It automatically passes the piped-in value as the first argument to the subsequent function. [2] [3]
[1] https://github.com/JuliaLang/julia/pull/24990
[2] https://www.r-bloggers.com/2021/05/the-new-r-pipe/
[3] https://michaelbarrowman.co.uk/post/the-new-base-pipe/
[+] [-] nine_k|3 years ago|reply
+ Hack :: https://docs.hhvm.com/hack/expressions-and-operators/pipe — works with any functions, uses $$ for the pipelined value.
OCaml also has a similar thing (@@) but I can't find a good reference page.
[+] [-] fulafel|3 years ago|reply
Clojure also has a placeholder variant, the as-> form. Quoting the example the Clojure doc page (https://clojure.org/guides/threading_macros):
[+] [-] bonquesha99|3 years ago|reply
https://github.com/lendinghome/pipe_operator#-pipe_operator
[+] [-] quechimba|3 years ago|reply
[+] [-] ilyash|3 years ago|reply
UFCS - https://en.m.wikipedia.org/wiki/Uniform_Function_Call_Syntax
[+] [-] zelphirkalt|3 years ago|reply
I once did an Elixir course and really liked the pipelines. I continued implementing pipelines with a Scheme macro, but not concurrently.
[+] [-] Fire-Dragon-DoL|3 years ago|reply
[+] [-] woodruffw|3 years ago|reply