Implementing Elixir's Pipeline in Ruby
I've been really loving Elixir, and one of the things I've loved the most is the pipeline operator |>. You see it in cases like this »
I've been really loving Elixir, and one of the things I've loved the most is the pipeline operator |>. You see it in cases like this »
Elixir (and Erlang for that matter) handles concurrency in a really neat way - with single responsibility processes, aka the Actor model. Spawning multiple processes certainly isn't exclusive to Elixir / Erlang, and neith »