Pipes ===== ```Example from 1 languages: R # R has pipes via a library like dplyr starwars %>% filter(species == "Droid") ``` ```Example from 1 languages: Bash echo "Hello world" > output.txt ``` ```Example from 1 languages: Elixir "Elixir" |> String.graphemes() |> Enum.frequencies() ``` ```Example from 1 languages: Julia [1,2,3] |> (y -> f(3, y)) ``` ```Example from 1 languages: MoonBit fn init { x |> f // 等价于 f(x) x |> f(y) // 等价于 f(x, y) } ``` * Languages *with* Pipes include R, Bash, Elixir, Julia, MoonBit, Speedie * Languages *without* Pipes include C3 * View all concepts with or missing a *hasPipes* measurement http://pldb.info/../lists/explorer.html#columns=rank~id~appeared~tags~creators~hasPipes&searchBuilder=%7B%22criteria%22%3A%5B%7B%22condition%22%3A%22null%22%2C%22data%22%3A%22hasPipes%22%2C%22origData%22%3A%22hasPipes%22%2C%22type%22%3A%22num%22%2C%22value%22%3A%5B%5D%7D%5D%2C%22logic%22%3A%22AND%22%7D missing http://pldb.info/../lists/explorer.html#columns=rank~id~appeared~tags~creators~hasPipes&searchBuilder=%7B%22criteria%22%3A%5B%7B%22condition%22%3A%22!null%22%2C%22data%22%3A%22hasPipes%22%2C%22origData%22%3A%22hasPipes%22%2C%22type%22%3A%22num%22%2C%22value%22%3A%5B%5D%7D%5D%2C%22logic%22%3A%22AND%22%7D with * Read more about Pipes on the web: 1. https://en.wikipedia.org/wiki/Pipeline_(software) 1. Built with Scroll v178.2.3