├── .formatter.exs ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── lib ├── complex.ex └── complex │ └── kernel.ex ├── mix.exs ├── mix.lock └── test ├── complex_test.exs └── test_helper.exs /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elixir-nx/complex/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elixir-nx/complex/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elixir-nx/complex/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elixir-nx/complex/HEAD/README.md -------------------------------------------------------------------------------- /lib/complex.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elixir-nx/complex/HEAD/lib/complex.ex -------------------------------------------------------------------------------- /lib/complex/kernel.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elixir-nx/complex/HEAD/lib/complex/kernel.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elixir-nx/complex/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elixir-nx/complex/HEAD/mix.lock -------------------------------------------------------------------------------- /test/complex_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elixir-nx/complex/HEAD/test/complex_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------