Brooklyn Zelenka
Brooklyn Zelenka
Woah, didn't see ya there! Looking now 👀
> Don't merge just yet (if you even want to merge it), this is for discussion at this point. You know, I like it! We'll probably see people abusing `block...
> What is your thought on adding another expression type of a
This has languished for WAY TOO LONG. I need to dive back into this one; I'll have a but of time soon over the holiday break. Deepest apologies for how...
I had initially written `safe` to be used outside of piping for reused functions. ie: wrap it once and use it everywhere. It's a great point about the piping use...
For the other version of `if_exception`, the standard lib comes with [`exception?/1`](https://hexdocs.pm/elixir/Exception.html#exception?/1) which handles that use case. ```elixir import Exception # NOTE: "Exception", not "Exceptional" ArgumentError.exception("error message") |> if exception?(myvar)...
> /me wishes that Exception.exception? was a macro, which it so could have been... then could use it in a matchspec like: Ooooh I see what you mean now. Indeed,...
First, thanks for writing in, @walkr 😄 I agree with @OvermindDL1. Further, at the controller level, you probably want to actually blow up. Plug will then take the thrown exception,...
Gonna write another wall of text to address a few points that you brought up that have been on my mind. This gets to be the forum for it, I...
Unary pointfree exists as of `v2.2.0`. Matching arity to first argument still coming.