Skip to content

Instantly share code, notes, and snippets.

@nicholasjhenry
Created November 11, 2018 18:13
Show Gist options
  • Save nicholasjhenry/f6ff97fa015f21c64622d0eebeb30944 to your computer and use it in GitHub Desktop.
Save nicholasjhenry/f6ff97fa015f21c64622d0eebeb30944 to your computer and use it in GitHub Desktop.
Type Playground
defmodule TypePlayground do
defmodule Maybe do
@type t(term) :: {:just, term} | :nothing
end
defmodule Result do
@type t(term) :: {:ok, term} | {:error, atom}
end
defmodule ApiAction do
defstruct func: nil
@type func :: (String.t() -> String.t())
@type t :: %__MODULE__{func: func}
@spec run(t, String.t()) :: String.t()
def run(action, string) do
IO.puts("Before: #{string}")
result = action.func.(string)
IO.puts("After: #{result}")
result
end
end
@spec greeting(Maybe.t(String.t())) :: Maybe.t(String.t())
def greeting(term) do
term
end
def foo do
greeting({:just, "hello"})
end
@spec bar(Result.t(String.t())) :: Result.t(String.t())
def bar(term) do
term
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment