Wait for theme
new
Cryptoid (context) > Application
Application
Description of Application
concepts
attrs
fields
signatures
⨌ start / 2 (anything) Signature inference is ambiguous, choose stricter type
Head of start/2
⨌ config_change / 3 (anything) Signature inference is ambiguous, choose stricter type
Head of config_change/3
samples
lib/cryptoid/application.ex
defmodule Cryptoid.Application do
@moduledoc "Description of Application"
@doc "Head of config_change/3"
@spec config_change(changed :: any, _new :: any, removed :: any) :: any
def config_change(changed, _new, removed)
def config_change(changed, _new, removed) do
end
@doc "Head of start/2"
@spec start(_type :: any, _args :: any) :: any
def start(_type, _args)
def start(_type, _args) do
end
end
defmodule Cryptoid.Application do
@moduledoc "Description of Application"
@doc "Head of config_change/3"
@spec config_change(changed :: any, _new :: any, removed :: any) :: any
def config_change(changed, _new, removed)
def config_change(changed, _new, removed) do
end
@doc "Head of start/2"
@spec start(_type :: any, _args :: any) :: any
def start(_type, _args)
def start(_type, _args) do
end
end
test/cryptoid/application_test.exs
defmodule Cryptoid.ApplicationTest do
use ExUnit.Case, async: true
alias Cryptoid.Application
describe("config_change / 3") do
test "fun config_change" do
end
end
describe("start / 2") do
test "fun start" do
end
end
end
defmodule Cryptoid.ApplicationTest do
use ExUnit.Case, async: true
alias Cryptoid.Application
describe("config_change / 3") do
test "fun config_change" do
end
end
describe("start / 2") do
test "fun start" do
end
end
end