new (origin Chaos )
Aftermath (context) > Chaos

Chaos

Explanation of Chaos


concepts

attrs

fields
∴ chaos_field (atom)

Explanation of chaos_field


signatures
⨌ chaotize / 1 (struct)

make some chaos


samples

lib/disco/aftermath/chaos.ex
defmodule Disco.Aftermath.Chaos do @moduledoc "Explanation of Chaos" defstruct chaos_field: nil @doc "make some chaos" @spec chaotize(chaos_discord_arg :: Discord.t()) :: Chaos.t() def chaotize(chaos_discord_arg) def chaotize(chaos_discord_arg) do end end

defmodule Disco.Aftermath.Chaos do
  @moduledoc "Explanation of Chaos"
  defstruct chaos_field: nil
  @doc "make some chaos"
  @spec chaotize(chaos_discord_arg :: Discord.t()) :: Chaos.t()
  def chaotize(chaos_discord_arg)

  def chaotize(chaos_discord_arg) do
  end
end


test/disco/aftermath/chaos_test.exs
defmodule Disco.Aftermath.ChaosTest do use ExUnit.Case, async: true alias Disco.Aftermath.Chaos describe("chaotize / 1") do test "general clause" do end end end

defmodule Disco.Aftermath.ChaosTest do
  use ExUnit.Case, async: true
  alias Disco.Aftermath.Chaos

  describe("chaotize / 1") do
    test "general clause" do
    end
  end
end