1
1
mirror of https://github.com/coot/free-category.git synced 2024-11-23 09:55:43 +03:00
Free categories, free arrows and free categories with monadic actions
Go to file
2018-11-11 13:18:14 +01:00
.circleci circleci: cachix-push command parameter 2018-11-11 13:18:14 +01:00
nix Fixed typo in nix/nixpkgs.nix file 2018-11-11 13:15:03 +01:00
src/Control Free Arrow 2018-10-27 12:26:44 +00:00
.travis.yml Initial version 2018-11-03 17:52:30 +01:00
ChangeLog.md Initial version 2018-11-03 17:52:30 +01:00
default.nix Initial version 2018-11-03 17:52:30 +01:00
free-category.cabal Initial version 2018-11-03 17:52:30 +01:00
LICENSE Initial commit 2018-08-26 19:12:12 +02:00
pkg.nix nix scripts 2018-10-22 00:09:31 +02:00
README.md Added circleci config file 2018-11-11 12:51:26 +01:00
shell.nix nix scripts 2018-10-22 00:09:31 +02:00

Free Category

Maintainer: coot CircleCI

This package introduces variouos encodings of free categories in Haskell.

Free categories are useful to model state machines in a simple yet type safe way and for that purpose Kleisli categroies are a very useful target which allows to include monadic computations. Read more here on a simple example of a finite state machine encoded using a free category using a simple GADT. Another simple example.