├── .circleci └── config.yml ├── .github └── CODEOWNERS ├── .gitignore ├── CHANGELOG.adoc ├── ORIGINATOR ├── README.md ├── project.clj ├── src ├── clj_commons │ ├── primitive_math.clj │ └── primitive_math │ │ └── Primitives.java ├── primitive_math.clj └── primitive_math │ └── Primitives.java └── test ├── clj_commons └── primitive_math_test.clj └── primitive_math_test.clj /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/primitive-math/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @KingMob 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/primitive-math/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/primitive-math/HEAD/CHANGELOG.adoc -------------------------------------------------------------------------------- /ORIGINATOR: -------------------------------------------------------------------------------- 1 | @ztellman 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/primitive-math/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/primitive-math/HEAD/project.clj -------------------------------------------------------------------------------- /src/clj_commons/primitive_math.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/primitive-math/HEAD/src/clj_commons/primitive_math.clj -------------------------------------------------------------------------------- /src/clj_commons/primitive_math/Primitives.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/primitive-math/HEAD/src/clj_commons/primitive_math/Primitives.java -------------------------------------------------------------------------------- /src/primitive_math.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/primitive-math/HEAD/src/primitive_math.clj -------------------------------------------------------------------------------- /src/primitive_math/Primitives.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/primitive-math/HEAD/src/primitive_math/Primitives.java -------------------------------------------------------------------------------- /test/clj_commons/primitive_math_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/primitive-math/HEAD/test/clj_commons/primitive_math_test.clj -------------------------------------------------------------------------------- /test/primitive_math_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/primitive-math/HEAD/test/primitive_math_test.clj --------------------------------------------------------------------------------