new
Cryptoid (context) > System

System

Supervisor for Cache


concepts

attrs

fields

signatures
⨌ start_link / 0 (anything) Signature inference is ambiguous, choose stricter type

Head of start_link/0

⨌ child_spec / 1 (anything) Signature inference is ambiguous, choose stricter type

Head of child_spec/1

⨌ start_link / 2 (anything) Signature inference is ambiguous, choose stricter type

Head of start_link/2


samples

lib/cryptoid/system.ex
defmodule Cryptoid.System do @moduledoc "Supervisor for Cache" @doc "Head of child_spec/1" @spec child_spec(_ :: any) :: any def child_spec(_) def child_spec(_) do end @doc "Head of start_link/0" @spec start_link() :: any def start_link() def start_link() do end @doc "Head of start_link/2" @spec start_link(_type :: any, _args :: any) :: any def start_link(_type, _args) def start_link(_type, _args) do end end

defmodule Cryptoid.System do
  @moduledoc "Supervisor for Cache"
  @doc "Head of child_spec/1"
  @spec child_spec(_ :: any) :: any
  def child_spec(_)

  def child_spec(_) do
  end

  @doc "Head of start_link/0"
  @spec start_link() :: any
  def start_link()

  def start_link() do
  end

  @doc "Head of start_link/2"
  @spec start_link(_type :: any, _args :: any) :: any
  def start_link(_type, _args)

  def start_link(_type, _args) do
  end
end


test/cryptoid/system_test.exs
defmodule Cryptoid.SystemTest do use ExUnit.Case, async: true alias Cryptoid.System describe("child_spec / 1") do test "fun child_spec" do end end describe("start_link / 0") do test "fun start_link" do end end describe("start_link / 2") do test "fun start_link" do end end end

defmodule Cryptoid.SystemTest do
  use ExUnit.Case, async: true
  alias Cryptoid.System

  describe("child_spec / 1") do
    test "fun child_spec" do
    end
  end

  describe("start_link / 0") do
    test "fun start_link" do
    end
  end

  describe("start_link / 2") do
    test "fun start_link" do
    end
  end
end