[project @ 2003-06-03 22:26:44 by diatchki]
authordiatchki <unknown>
Tue, 3 Jun 2003 22:26:50 +0000 (22:26 +0000)
committerdiatchki <unknown>
Tue, 3 Jun 2003 22:26:50 +0000 (22:26 +0000)
commitec61b893cef9578457201bda1e159bd3dc076ec9
tree5e62a0fafaf8c97236d54eec4dc40f50277d71ad
parent693255e8d7c52e0e6e88e6b9c112ae123877a6a8
[project @ 2003-06-03 22:26:44 by diatchki]
Added a first version of the new monad library (experimental).
Hopefully one day the "X" will disappear.
34 files changed:
Control/Monad/X/Cont.hs [new file with mode: 0644]
Control/Monad/X/ContT.hs [new file with mode: 0644]
Control/Monad/X/Error.hs [new file with mode: 0644]
Control/Monad/X/ErrorT.hs [new file with mode: 0644]
Control/Monad/X/Fix.hs [new file with mode: 0644]
Control/Monad/X/Identity.hs [new file with mode: 0644]
Control/Monad/X/Monads.hs [new file with mode: 0644]
Control/Monad/X/Nondet.hs [new file with mode: 0644]
Control/Monad/X/NondetT.hs [new file with mode: 0644]
Control/Monad/X/README [new file with mode: 0644]
Control/Monad/X/Reader.hs [new file with mode: 0644]
Control/Monad/X/ReaderT.hs [new file with mode: 0644]
Control/Monad/X/Resume.hs [new file with mode: 0644]
Control/Monad/X/ResumeT.hs [new file with mode: 0644]
Control/Monad/X/State.hs [new file with mode: 0644]
Control/Monad/X/StateT.hs [new file with mode: 0644]
Control/Monad/X/Trans.hs [new file with mode: 0644]
Control/Monad/X/Transformers.hs [new file with mode: 0644]
Control/Monad/X/Types.hs [new file with mode: 0644]
Control/Monad/X/Utils.hs [new file with mode: 0644]
Control/Monad/X/Writer.hs [new file with mode: 0644]
Control/Monad/X/WriterT.hs [new file with mode: 0644]
Control/Monad/X/laws/Prop.hs [new file with mode: 0644]
Control/Monad/X/laws/Reader.hs [new file with mode: 0644]
Control/Monad/X/laws/Writer.hs [new file with mode: 0644]
Control/Monad/X/tests/ContTests.hs [new file with mode: 0644]
Control/Monad/X/tests/Error.hs [new file with mode: 0644]
Control/Monad/X/tests/ExceptionTests.hs [new file with mode: 0644]
Control/Monad/X/tests/Nondet.hs [new file with mode: 0644]
Control/Monad/X/tests/Reader.hs [new file with mode: 0644]
Control/Monad/X/tests/ReaderNondet.hs [new file with mode: 0644]
Control/Monad/X/tests/State.hs [new file with mode: 0644]
Control/Monad/X/tests/Writer.hs [new file with mode: 0644]
Control/Monad/X/tests/testNondet.hs [new file with mode: 0644]