-
-
Save developerworks/3b98dcc0f20e5f1ef0cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule ROP do | |
defmacro try_catch(args, func) do | |
quote do | |
(fn -> | |
try do | |
unquote(args) |> unquote(func) | |
rescue | |
e -> {:error, e} | |
end | |
end).() | |
end | |
end | |
defmacro tee(args, func) do | |
quote do | |
(fn -> | |
unquote(args) |> unquote(func) | |
{:ok, unquote(args)} | |
end).() | |
end | |
end | |
defmacro bind(args, func) do | |
quote do | |
(fn -> | |
result = unquote(args) |> unquote(func) | |
{:ok, result} | |
end).() | |
end | |
end | |
defmacro left >>> right do | |
quote do | |
(fn -> | |
case unquote(left) do | |
{:ok, x} -> x |> unquote(right) | |
{:error, _} = expr -> expr | |
end | |
end).() | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment