DeltaAlive (concept)
Explanation of delta_alive
fantom theta_foo (atom)
Explanation of theta_foo
fantom theta_bar (boolean)
Explanation of theta_bar
fantom theta_baz (integer)
Explanation of theta_baz
⨌ zeta_one / 0 (signature)
Explanation of zeta_one
⨌ zeta_two / 1 (signature)
Explanation of zeta_two
defmodule Example.AlphaAlive.GammaAlive do
@moduledoc "Explanation of gamma_alive"
@doc "Explanation of zeta_two"
@spec zeta_two() :: float
def zeta_two() do
end
@doc "Explanation of zeta_one"
@spec zeta_one() :: binary
def zeta_one() do
end
end
defmodule Example.AlphaAlive.GammaAliveTest do
use ExUnit.Case, async: true
describe("zeta_one / 0") do
test "general clause" do
end
end
describe("zeta_two / 1") do
test "general clause" do
end
end
end