Currently it is necessary to do `|> &elem(&1, 1)` or `|> &elem(&1, 2)` when trying to get a specific element of a tuple in a pipeline or normally.
F#[0], Haskell[1], Ocaml[2] and other functional languages have the `fst` and `snd` functions, which simply extract the first and second elements of a tuple, respectively.
I think it would make some code samples simpler, since it reads much better, I guess it's the same idea as using `|> hd()` rather than doing `|> fn [h | _] -> h end`.
Does this makes sense for Elixir? If so, I'm willing to implement it.