Created
November 11, 2018 18:13
-
-
Save nicholasjhenry/f6ff97fa015f21c64622d0eebeb30944 to your computer and use it in GitHub Desktop.
Type Playground
This file contains 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 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