├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── examples ├── threenightclubs.clj └── validateur_usage.clj ├── project.clj ├── src └── predicat │ └── core.clj └── test └── predicat └── core_test.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbocq/predicat/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbocq/predicat/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbocq/predicat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbocq/predicat/HEAD/README.md -------------------------------------------------------------------------------- /examples/threenightclubs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbocq/predicat/HEAD/examples/threenightclubs.clj -------------------------------------------------------------------------------- /examples/validateur_usage.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbocq/predicat/HEAD/examples/validateur_usage.clj -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbocq/predicat/HEAD/project.clj -------------------------------------------------------------------------------- /src/predicat/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbocq/predicat/HEAD/src/predicat/core.clj -------------------------------------------------------------------------------- /test/predicat/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbocq/predicat/HEAD/test/predicat/core_test.clj --------------------------------------------------------------------------------