├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs └── index.html ├── documentation.lisp ├── float-features-tests.asd ├── float-features.asd ├── float-features.lisp ├── infinity.lisp ├── nan.lisp ├── package.lisp └── test-float-features.lisp /.gitattributes: -------------------------------------------------------------------------------- 1 | doc/ linguist-vendored -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | #* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/docs/index.html -------------------------------------------------------------------------------- /documentation.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/documentation.lisp -------------------------------------------------------------------------------- /float-features-tests.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/float-features-tests.asd -------------------------------------------------------------------------------- /float-features.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/float-features.asd -------------------------------------------------------------------------------- /float-features.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/float-features.lisp -------------------------------------------------------------------------------- /infinity.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/infinity.lisp -------------------------------------------------------------------------------- /nan.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/nan.lisp -------------------------------------------------------------------------------- /package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/package.lisp -------------------------------------------------------------------------------- /test-float-features.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/float-features/HEAD/test-float-features.lisp --------------------------------------------------------------------------------