packages feed

ImperativeHaskell 0.2.0.0 → 0.2.0.1

raw patch · 188 files changed

+59/−1790 lines, 188 filesbinary-added

Files

− .git/COMMIT_EDITMSG
@@ -1,1 +0,0 @@-added two classes to make functions callable in places values are requested, and added a more general return', also changed auto to new
− .git/HEAD
@@ -1,1 +0,0 @@-ref: refs/heads/master
− .git/config
@@ -1,12 +0,0 @@-[core]-	repositoryformatversion = 0-	filemode = true-	bare = false-	logallrefupdates = true-	ignorecase = true-[remote "origin"]-	fetch = +refs/heads/*:refs/remotes/origin/*-	url = git@github.com:mmirman/ImperativeHaskell.git-[branch "master"]-	remote = origin-	merge = refs/heads/master
− .git/description
@@ -1,1 +0,0 @@-Unnamed repository; edit this file 'description' to name the repository.
− .git/hooks/applypatch-msg.sample
@@ -1,15 +0,0 @@-#!/bin/sh-#-# An example hook script to check the commit log message taken by-# applypatch from an e-mail message.-#-# The hook should exit with non-zero status after issuing an-# appropriate message if it wants to stop the commit.  The hook is-# allowed to edit the commit message file.-#-# To enable this hook, rename this file to "applypatch-msg".--. git-sh-setup-test -x "$GIT_DIR/hooks/commit-msg" &&-	exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}-:
− .git/hooks/commit-msg.sample
@@ -1,24 +0,0 @@-#!/bin/sh-#-# An example hook script to check the commit log message.-# Called by "git commit" with one argument, the name of the file-# that has the commit message.  The hook should exit with non-zero-# status after issuing an appropriate message if it wants to stop the-# commit.  The hook is allowed to edit the commit message file.-#-# To enable this hook, rename this file to "commit-msg".--# Uncomment the below to add a Signed-off-by line to the message.-# Doing this in a hook is a bad idea in general, but the prepare-commit-msg-# hook is more suited to it.-#-# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')-# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"--# This example catches duplicate Signed-off-by lines.--test "" = "$(grep '^Signed-off-by: ' "$1" |-	 sort | uniq -c | sed -e '/^[ 	]*1[ 	]/d')" || {-	echo >&2 Duplicate Signed-off-by lines.-	exit 1-}
− .git/hooks/post-commit.sample
@@ -1,8 +0,0 @@-#!/bin/sh-#-# An example hook script that is called after a successful-# commit is made.-#-# To enable this hook, rename this file to "post-commit".--: Nothing
− .git/hooks/post-receive.sample
@@ -1,15 +0,0 @@-#!/bin/sh-#-# An example hook script for the "post-receive" event.-#-# The "post-receive" script is run after receive-pack has accepted a pack-# and the repository has been updated.  It is passed arguments in through-# stdin in the form-#  <oldrev> <newrev> <refname>-# For example:-#  aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master-#-# see contrib/hooks/ for a sample, or uncomment the next line and-# rename the file to "post-receive".--#. /usr/share/doc/git-core/contrib/hooks/post-receive-email
− .git/hooks/post-update.sample
@@ -1,8 +0,0 @@-#!/bin/sh-#-# An example hook script to prepare a packed repository for use over-# dumb transports.-#-# To enable this hook, rename this file to "post-update".--exec git update-server-info
− .git/hooks/pre-applypatch.sample
@@ -1,14 +0,0 @@-#!/bin/sh-#-# An example hook script to verify what is about to be committed-# by applypatch from an e-mail message.-#-# The hook should exit with non-zero status after issuing an-# appropriate message if it wants to stop the commit.-#-# To enable this hook, rename this file to "pre-applypatch".--. git-sh-setup-test -x "$GIT_DIR/hooks/pre-commit" &&-	exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}-:
− .git/hooks/pre-commit.sample
@@ -1,46 +0,0 @@-#!/bin/sh-#-# An example hook script to verify what is about to be committed.-# Called by "git commit" with no arguments.  The hook should-# exit with non-zero status after issuing an appropriate message if-# it wants to stop the commit.-#-# To enable this hook, rename this file to "pre-commit".--if git rev-parse --verify HEAD >/dev/null 2>&1-then-	against=HEAD-else-	# Initial commit: diff against an empty tree object-	against=4b825dc642cb6eb9a060e54bf8d69288fbee4904-fi--# If you want to allow non-ascii filenames set this variable to true.-allownonascii=$(git config hooks.allownonascii)--# Cross platform projects tend to avoid non-ascii filenames; prevent-# them from being added to the repository. We exploit the fact that the-# printable range starts at the space character and ends with tilde.-if [ "$allownonascii" != "true" ] &&-	# Note that the use of brackets around a tr range is ok here, (it's-	# even required, for portability to Solaris 10's /usr/bin/tr), since-	# the square bracket bytes happen to fall in the designated range.-	test "$(git diff --cached --name-only --diff-filter=A -z $against |-	  LC_ALL=C tr -d '[ -~]\0')"-then-	echo "Error: Attempt to add a non-ascii file name."-	echo-	echo "This can cause problems if you want to work"-	echo "with people on other platforms."-	echo-	echo "To be portable it is advisable to rename the file ..."-	echo-	echo "If you know what you are doing you can disable this"-	echo "check using:"-	echo-	echo "  git config hooks.allownonascii true"-	echo-	exit 1-fi--exec git diff-index --check --cached $against --
− .git/hooks/pre-rebase.sample
@@ -1,169 +0,0 @@-#!/bin/sh-#-# Copyright (c) 2006, 2008 Junio C Hamano-#-# The "pre-rebase" hook is run just before "git rebase" starts doing-# its job, and can prevent the command from running by exiting with-# non-zero status.-#-# The hook is called with the following parameters:-#-# $1 -- the upstream the series was forked from.-# $2 -- the branch being rebased (or empty when rebasing the current branch).-#-# This sample shows how to prevent topic branches that are already-# merged to 'next' branch from getting rebased, because allowing it-# would result in rebasing already published history.--publish=next-basebranch="$1"-if test "$#" = 2-then-	topic="refs/heads/$2"-else-	topic=`git symbolic-ref HEAD` ||-	exit 0 ;# we do not interrupt rebasing detached HEAD-fi--case "$topic" in-refs/heads/??/*)-	;;-*)-	exit 0 ;# we do not interrupt others.-	;;-esac--# Now we are dealing with a topic branch being rebased-# on top of master.  Is it OK to rebase it?--# Does the topic really exist?-git show-ref -q "$topic" || {-	echo >&2 "No such branch $topic"-	exit 1-}--# Is topic fully merged to master?-not_in_master=`git rev-list --pretty=oneline ^master "$topic"`-if test -z "$not_in_master"-then-	echo >&2 "$topic is fully merged to master; better remove it."-	exit 1 ;# we could allow it, but there is no point.-fi--# Is topic ever merged to next?  If so you should not be rebasing it.-only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`-only_next_2=`git rev-list ^master           ${publish} | sort`-if test "$only_next_1" = "$only_next_2"-then-	not_in_topic=`git rev-list "^$topic" master`-	if test -z "$not_in_topic"-	then-		echo >&2 "$topic is already up-to-date with master"-		exit 1 ;# we could allow it, but there is no point.-	else-		exit 0-	fi-else-	not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`-	/opt/local/bin/perl5.12 -e '-		my $topic = $ARGV[0];-		my $msg = "* $topic has commits already merged to public branch:\n";-		my (%not_in_next) = map {-			/^([0-9a-f]+) /;-			($1 => 1);-		} split(/\n/, $ARGV[1]);-		for my $elem (map {-				/^([0-9a-f]+) (.*)$/;-				[$1 => $2];-			} split(/\n/, $ARGV[2])) {-			if (!exists $not_in_next{$elem->[0]}) {-				if ($msg) {-					print STDERR $msg;-					undef $msg;-				}-				print STDERR " $elem->[1]\n";-			}-		}-	' "$topic" "$not_in_next" "$not_in_master"-	exit 1-fi--exit 0--################################################################--This sample hook safeguards topic branches that have been-published from being rewound.--The workflow assumed here is:-- * Once a topic branch forks from "master", "master" is never-   merged into it again (either directly or indirectly).-- * Once a topic branch is fully cooked and merged into "master",-   it is deleted.  If you need to build on top of it to correct-   earlier mistakes, a new topic branch is created by forking at-   the tip of the "master".  This is not strictly necessary, but-   it makes it easier to keep your history simple.-- * Whenever you need to test or publish your changes to topic-   branches, merge them into "next" branch.--The script, being an example, hardcodes the publish branch name-to be "next", but it is trivial to make it configurable via-$GIT_DIR/config mechanism.--With this workflow, you would want to know:--(1) ... if a topic branch has ever been merged to "next".  Young-    topic branches can have stupid mistakes you would rather-    clean up before publishing, and things that have not been-    merged into other branches can be easily rebased without-    affecting other people.  But once it is published, you would-    not want to rewind it.--(2) ... if a topic branch has been fully merged to "master".-    Then you can delete it.  More importantly, you should not-    build on top of it -- other people may already want to-    change things related to the topic as patches against your-    "master", so if you need further changes, it is better to-    fork the topic (perhaps with the same name) afresh from the-    tip of "master".--Let's look at this example:--		   o---o---o---o---o---o---o---o---o---o "next"-		  /       /           /           /-		 /   a---a---b A     /           /-		/   /               /           /-	       /   /   c---c---c---c B         /-	      /   /   /             \         /-	     /   /   /   b---b C     \       /-	    /   /   /   /             \     /-    ---o---o---o---o---o---o---o---o---o---o---o "master"---A, B and C are topic branches.-- * A has one fix since it was merged up to "next".-- * B has finished.  It has been fully merged up to "master" and "next",-   and is ready to be deleted.-- * C has not merged to "next" at all.--We would want to allow C to be rebased, refuse A, and encourage-B to be deleted.--To compute (1):--	git rev-list ^master ^topic next-	git rev-list ^master        next--	if these match, topic has not merged in next at all.--To compute (2):--	git rev-list master..topic--	if this is empty, it is fully merged to "master".
− .git/hooks/prepare-commit-msg.sample
@@ -1,36 +0,0 @@-#!/bin/sh-#-# An example hook script to prepare the commit log message.-# Called by "git commit" with the name of the file that has the-# commit message, followed by the description of the commit-# message's source.  The hook's purpose is to edit the commit-# message file.  If the hook fails with a non-zero status,-# the commit is aborted.-#-# To enable this hook, rename this file to "prepare-commit-msg".--# This hook includes three examples.  The first comments out the-# "Conflicts:" part of a merge commit.-#-# The second includes the output of "git diff --name-status -r"-# into the message, just before the "git status" output.  It is-# commented because it doesn't cope with --amend or with squashed-# commits.-#-# The third example adds a Signed-off-by line to the message, that can-# still be edited.  This is rarely a good idea.--case "$2,$3" in-  merge,)-    /opt/local/bin/perl5.12 -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;--# ,|template,)-#   /opt/local/bin/perl5.12 -i.bak -pe '-#      print "\n" . `git diff --cached --name-status -r`-#	 if /^#/ && $first++ == 0' "$1" ;;--  *) ;;-esac--# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')-# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
− .git/hooks/update.sample
@@ -1,128 +0,0 @@-#!/bin/sh-#-# An example hook script to blocks unannotated tags from entering.-# Called by "git receive-pack" with arguments: refname sha1-old sha1-new-#-# To enable this hook, rename this file to "update".-#-# Config-# -------# hooks.allowunannotated-#   This boolean sets whether unannotated tags will be allowed into the-#   repository.  By default they won't be.-# hooks.allowdeletetag-#   This boolean sets whether deleting tags will be allowed in the-#   repository.  By default they won't be.-# hooks.allowmodifytag-#   This boolean sets whether a tag may be modified after creation. By default-#   it won't be.-# hooks.allowdeletebranch-#   This boolean sets whether deleting branches will be allowed in the-#   repository.  By default they won't be.-# hooks.denycreatebranch-#   This boolean sets whether remotely creating branches will be denied-#   in the repository.  By default this is allowed.-#--# --- Command line-refname="$1"-oldrev="$2"-newrev="$3"--# --- Safety check-if [ -z "$GIT_DIR" ]; then-	echo "Don't run this script from the command line." >&2-	echo " (if you want, you could supply GIT_DIR then run" >&2-	echo "  $0 <ref> <oldrev> <newrev>)" >&2-	exit 1-fi--if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then-	echo "Usage: $0 <ref> <oldrev> <newrev>" >&2-	exit 1-fi--# --- Config-allowunannotated=$(git config --bool hooks.allowunannotated)-allowdeletebranch=$(git config --bool hooks.allowdeletebranch)-denycreatebranch=$(git config --bool hooks.denycreatebranch)-allowdeletetag=$(git config --bool hooks.allowdeletetag)-allowmodifytag=$(git config --bool hooks.allowmodifytag)--# check for no description-projectdesc=$(sed -e '1q' "$GIT_DIR/description")-case "$projectdesc" in-"Unnamed repository"* | "")-	echo "*** Project description file hasn't been set" >&2-	exit 1-	;;-esac--# --- Check types-# if $newrev is 0000...0000, it's a commit to delete a ref.-zero="0000000000000000000000000000000000000000"-if [ "$newrev" = "$zero" ]; then-	newrev_type=delete-else-	newrev_type=$(git cat-file -t $newrev)-fi--case "$refname","$newrev_type" in-	refs/tags/*,commit)-		# un-annotated tag-		short_refname=${refname##refs/tags/}-		if [ "$allowunannotated" != "true" ]; then-			echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2-			echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2-			exit 1-		fi-		;;-	refs/tags/*,delete)-		# delete tag-		if [ "$allowdeletetag" != "true" ]; then-			echo "*** Deleting a tag is not allowed in this repository" >&2-			exit 1-		fi-		;;-	refs/tags/*,tag)-		# annotated tag-		if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1-		then-			echo "*** Tag '$refname' already exists." >&2-			echo "*** Modifying a tag is not allowed in this repository." >&2-			exit 1-		fi-		;;-	refs/heads/*,commit)-		# branch-		if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then-			echo "*** Creating a branch is not allowed in this repository" >&2-			exit 1-		fi-		;;-	refs/heads/*,delete)-		# delete branch-		if [ "$allowdeletebranch" != "true" ]; then-			echo "*** Deleting a branch is not allowed in this repository" >&2-			exit 1-		fi-		;;-	refs/remotes/*,commit)-		# tracking branch-		;;-	refs/remotes/*,delete)-		# delete tracking branch-		if [ "$allowdeletebranch" != "true" ]; then-			echo "*** Deleting a tracking branch is not allowed in this repository" >&2-			exit 1-		fi-		;;-	*)-		# Anything else (is there anything else?)-		echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2-		exit 1-		;;-esac--# --- Finished-exit 0
− .git/index

binary file changed (728 → absent bytes)

− .git/info/exclude
@@ -1,6 +0,0 @@-# git ls-files --others --exclude-from=.git/info/exclude-# Lines that start with '#' are comments.-# For a project mostly in C, the following would be a good set of-# exclude patterns (uncomment them if you want to use them):-# *.[oa]-# *~
− .git/logs/HEAD
@@ -1,10 +0,0 @@-0000000000000000000000000000000000000000 df7defd6c9e46afca38576cb5ebd89d20bad3b3e Matthew Mirman <titaniumeyes@aol.com> 1334780941 -0400	clone: from git@github.com:mmirman/ImperativeHaskell.git-df7defd6c9e46afca38576cb5ebd89d20bad3b3e f44e5cbbdb56e9a797445e831d9126a4a0542edf Matthew Mirman <titaniumeyes@aol.com> 1334781285 -0400	commit: Updated the .cabal-f44e5cbbdb56e9a797445e831d9126a4a0542edf 3c71805404049f0d64221313415cca97d5bfa15f Matthew Mirman <titaniumeyes@aol.com> 1334781305 -0400	commit: Moved the README back to a realistic location-3c71805404049f0d64221313415cca97d5bfa15f 13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d Matthew Mirman <titaniumeyes@aol.com> 1334782799 -0400	commit: updated the .cabal-13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d 6fa9c224f310679b8695f60248ed373d3056ea82 Matthew Mirman <titaniumeyes@aol.com> 1334859718 -0400	commit: moved imperative up-6fa9c224f310679b8695f60248ed373d3056ea82 22c324eaf52c21034500ee0054f5d7057ed9cb95 Matthew Mirman <titaniumeyes@aol.com> 1334860946 -0400	commit: fixed ImperativeHaskell.cabal to work-22c324eaf52c21034500ee0054f5d7057ed9cb95 61553f3af4ea8927fa6e83e4bde2eb2131eff9ce Matthew Mirman <titaniumeyes@aol.com> 1334861178 -0400	commit: fixed the .cabal's base to include that base that I am using-61553f3af4ea8927fa6e83e4bde2eb2131eff9ce b0a8c19ae0e0f3b83424a1e373e480b35d7367e1 Matthew Mirman <titaniumeyes@aol.com> 1334862382 -0400	commit: Updaed the .cabal to the current package version-b0a8c19ae0e0f3b83424a1e373e480b35d7367e1 6e0825817121f8ce2c24adb505367fc6417e88c2 Matthew Mirman <titaniumeyes@aol.com> 1334971912 -0400	commit: Updated the readme to point to the relevant blog post-6e0825817121f8ce2c24adb505367fc6417e88c2 df084aacab1794b35c3f7dc324f551906ca08b7a Matthew Mirman <titaniumeyes@aol.com> 1335210914 -0400	commit: added two classes to make functions callable in places values are requested, and added a more general return', also changed auto to new
− .git/logs/refs/heads/master
@@ -1,10 +0,0 @@-0000000000000000000000000000000000000000 df7defd6c9e46afca38576cb5ebd89d20bad3b3e Matthew Mirman <titaniumeyes@aol.com> 1334780941 -0400	clone: from git@github.com:mmirman/ImperativeHaskell.git-df7defd6c9e46afca38576cb5ebd89d20bad3b3e f44e5cbbdb56e9a797445e831d9126a4a0542edf Matthew Mirman <titaniumeyes@aol.com> 1334781285 -0400	commit: Updated the .cabal-f44e5cbbdb56e9a797445e831d9126a4a0542edf 3c71805404049f0d64221313415cca97d5bfa15f Matthew Mirman <titaniumeyes@aol.com> 1334781305 -0400	commit: Moved the README back to a realistic location-3c71805404049f0d64221313415cca97d5bfa15f 13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d Matthew Mirman <titaniumeyes@aol.com> 1334782799 -0400	commit: updated the .cabal-13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d 6fa9c224f310679b8695f60248ed373d3056ea82 Matthew Mirman <titaniumeyes@aol.com> 1334859718 -0400	commit: moved imperative up-6fa9c224f310679b8695f60248ed373d3056ea82 22c324eaf52c21034500ee0054f5d7057ed9cb95 Matthew Mirman <titaniumeyes@aol.com> 1334860946 -0400	commit: fixed ImperativeHaskell.cabal to work-22c324eaf52c21034500ee0054f5d7057ed9cb95 61553f3af4ea8927fa6e83e4bde2eb2131eff9ce Matthew Mirman <titaniumeyes@aol.com> 1334861178 -0400	commit: fixed the .cabal's base to include that base that I am using-61553f3af4ea8927fa6e83e4bde2eb2131eff9ce b0a8c19ae0e0f3b83424a1e373e480b35d7367e1 Matthew Mirman <titaniumeyes@aol.com> 1334862382 -0400	commit: Updaed the .cabal to the current package version-b0a8c19ae0e0f3b83424a1e373e480b35d7367e1 6e0825817121f8ce2c24adb505367fc6417e88c2 Matthew Mirman <titaniumeyes@aol.com> 1334971912 -0400	commit: Updated the readme to point to the relevant blog post-6e0825817121f8ce2c24adb505367fc6417e88c2 df084aacab1794b35c3f7dc324f551906ca08b7a Matthew Mirman <titaniumeyes@aol.com> 1335210914 -0400	commit: added two classes to make functions callable in places values are requested, and added a more general return', also changed auto to new
− .git/logs/refs/remotes/origin/master
@@ -1,3 +0,0 @@-df7defd6c9e46afca38576cb5ebd89d20bad3b3e 13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d Matthew Mirman <titaniumeyes@aol.com> 1334782805 -0400	update by push-13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d 61553f3af4ea8927fa6e83e4bde2eb2131eff9ce Matthew Mirman <titaniumeyes@aol.com> 1334861186 -0400	update by push-61553f3af4ea8927fa6e83e4bde2eb2131eff9ce 6e0825817121f8ce2c24adb505367fc6417e88c2 Matthew Mirman <titaniumeyes@aol.com> 1334971916 -0400	update by push
− .git/objects/01/6acde47628279b666290c9dc9191adb7dc653a

binary file changed (85 → absent bytes)

− .git/objects/0a/1abd5de3cf5822c055651be49c0740da2dbb10

binary file changed (225 → absent bytes)

− .git/objects/0b/7d578c0025e285b92f790f55ca47ffae3a5fe7

binary file changed (47 → absent bytes)

− .git/objects/11/a89507307aeab1a1284fedbce84afc91a0c992

binary file changed (226 → absent bytes)

− .git/objects/13/ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d
@@ -1,2 +0,0 @@-xŽAŽÂ0EYç¾À :Np#!Ä8„븢iQq…æö“3ŒÞî/Þºµ¶8Ą'ßÍ@8aL2Šˆ"k4!&ÓXÑR©’§)¼e·Õ”qr:eê%ň„”0«JᚧY0ÏAn;<Äýi_x,{“®¾¸¬ËÑì×>wÙ^gÝÚ
(ñ¹øéæ!ôµgºý[Žw·-ýÎ*“¼Â/„L¶
− .git/objects/16/fe73c8a57c56fa51da5ed4d259614270f45c44

binary file changed (262 → absent bytes)

− .git/objects/1b/7ae0fd289a218bb3c18711bbb72e0d2f6ff52d

binary file changed (550 → absent bytes)

− .git/objects/22/c324eaf52c21034500ee0054f5d7057ed9cb95
@@ -1,1 +0,0 @@-xAn!sæóG,`X$+ÊÑ9ø³ÐÈÈËbáqœü>û†\ûPUzkUÈxý& ^/
ä紎ÁÙÀ	%À—Ýd¬Óêː/“1®ØIû—ÙÇcñڸٛ­>zðl?åÚ]XäŠ]êh¼ÑIªðVŸ
¿x|r_ßSo4Yëf¯£ótÐ{„Ú×=Sðo€*õ™¾Úƒ¥~ã̏ÖÝ·ß]I:½ú¸©?r#Uq
− .git/objects/32/20183a054c44174eca29bd7e4f74253fa98d1b

binary file changed (2376 → absent bytes)

− .git/objects/3c/71805404049f0d64221313415cca97d5bfa15f

binary file changed (190 → absent bytes)

− .git/objects/3d/f66baae2b65e3cc058cd4b96c923395231ec0d

binary file changed (93 → absent bytes)

− .git/objects/3f/f4f6afff27246be0b826adf182e09134a9f0d4

binary file changed (226 → absent bytes)

− .git/objects/4c/ee439117e43cf393fde2d5400edfbd98a2c026
@@ -1,2 +0,0 @@-x%ÎÍj1àž÷)tË%ñþ@/¹JôŠìUׯ²elmHÞ¾¦sf>Ëba™>?{S(UäÔ£Â[$æ8Ì`	´îü†-UÔð¤3`^ž”E"pˆ73_R¡I"°èâVeÏëù¨„^µ\Ç1JMèd%cY¶VD“4.Ó<=îÒôÍtñ‡ágžŒ×ÄÇvçÐSa‚½áÖ!ÿÿ}üC6¾uÃąHz
− .git/objects/52/f49ecd1fcef550c86e7af737810a84c463a5fb

binary file changed (568 → absent bytes)

− .git/objects/53/c4b3fec17c1360de0070e11e57d94dfd55ec37

binary file changed (339 → absent bytes)

− .git/objects/56/6b9fea2f24763dd382cdaafb4996b3a6b6dea6
@@ -1,1 +0,0 @@-x­TïÚ8½ÏHüOí©·l(Tmut·º”.	XÄUûÑ$±.±#Ç!¥Ûþï;	¬NÚût‘ ç͛7cïµÇàÝÛ¿~{¼~‰¹¿œîüé]»…©ÿy›ÓûåõÏv«Ýºþ?‡î¡Â"ápÏX0!ݺ_˜Xé'ëÆÄ¼ÄBè”It¦îëo&CÍK/H‡º.xcØ^$œ(ž@ù·Œk‘riXâü+¥Ï;ȟ93áÎ÷™ç™JÚX_R8K3â˜VT#¢5VÒh•x%YèÍRÂgF+3—yUÁL—»ãçpc•´8ĝqÃ׃¡-ýi‰—½ÛXäÈ´:h–‚>#Í9r™’i>ÂIHÍC‘-ö…á$LŸ˜i-2ä¤$×i9ƒØaÊ%‘`Uì áÏ(·]Écb_Ùø‰e±©Y`¢™P².ȯqä:·¾i’Ôˆ=(íèt˜±ä5”»KŒOHkb½çE¸ÔBHWD¬2*+&T*´I‚=G‘ó¨Hzˆ”Á×ÙöËýnù€¯þzí/·h7
yù‘WX‚.¨`’X3Is¤"±¸[¿PŒÿi6Ÿm¨LfÛåÝfƒÉý>Vþz;ïæþ«Ýzu¿¹ó€
IEš8„ÿÚVª4GÈ
Iþ¤üjrN“1;rjvÀiÜB04JÄσ»Ü,QòàŠ%:—¡"†³R™rbz“úý²,½ƒ,<¥}š;Íyÿ£½êƒ`Ï*Jê5UÖn‘dtŒ°Ò<)BŽX„‚’uöš³èTÖîçN»•—,ëèAzØÅ-¢BîþŽPµ[tÑó7×`…Qn–#!yø¡ñ܎ µ¥°æ°1‡ÖüNÖOúµ[ŒÒ‚æý¹Dìœèu!Ï+MÛ±õ€ 3º`0@¬¯¶*óêâí¢ªÅòX±¶ŸÒV§±+"úÃ7PïIA»Þ<Ý?BÜÕÒ,6AëüoÿäZQ'©T°‘Nut^u%‘§ëžA57…–HZ©¨ù¶ë·®%€±’èB^n@œ•µŒ³ÂlŒžKªûÅF¥tm4ºðâêŠFº„i·~„Ü
− .git/objects/5b/d6e430e9a65225607dd76ca7384e8d15890a03
@@ -1,3 +0,0 @@-x¥TmoÚ0Þ×úWœøÐOÄÀº
µhPÛ	Ø4¦}w’ƒXø%²hþ}/	,ME¥I³Å–ïžçcec¾|~·Çðj<êò€ÂïQ)ö—Öt-‡|Äécsô‰“yèLA[#R™Pxôp?ÿö L-‰5Aš‚¬ñìy³
æJ&" +IӃ’{:̝Ý9¡/;KC4 ÿfJ˜]!vظÏÀ:ø.â²÷Q†zCáL¯½­uÕ/v(öÕâ=Òú2@•¢.‚ˆR[thôœmJcs/ýøªÎqJÑÄN¸ˆŽNRMvÐÖ|(	!k$àŒ=X9eÑQ!!÷ãÁ`GQ1O¬h-fÐBedK™ ñ]¸ÿ¹ŒnØù,ÚJÕ,g‹õfÁØ´™uj€•!Ã#¬jBÆVBš@¾4ìÁí)¼¯T&‡Gžè‚cZL›‘Ö;ëÊɌzÅYÅØ·Bª4-eÞ°!‘V®±Pѡۥ“»ÿÄØÆ.ÁˆÚÉz2)I×bQñh¯,u[ÝÄ´ÿǒòʕJWI4›@SÌѤþœK,<Âä>ð!\_Ã-|ä÷ú@x¶½áCvÕ4MͰx¢T0´M…
Ç©N|UÝ:ÞJß§ˆ.·ì_¸ÖPÿáÿ£~E¬«®8ÍÅS Þ«®ü¸yú°Ðy(ç"ˆ9&Ê÷am‰ÓjëòLzý}p2©$©“`Ï~É[	
− .git/objects/61/553f3af4ea8927fa6e83e4bde2eb2131eff9ce

binary file changed (196 → absent bytes)

− .git/objects/64/28694338ff041ea1e8b44746a61d79ba0d12ef

binary file changed (94 → absent bytes)

− .git/objects/64/e722e001bcdd0acfa511d7f176658afcdd07a8

binary file changed (80 → absent bytes)

− .git/objects/6d/51fd1f999dec9c763ac06630c5ea3ed71919f5

binary file changed (565 → absent bytes)

− .git/objects/6d/7ec056a33b1cbd2a8845e35b71092dac436ae5

binary file changed (570 → absent bytes)

− .git/objects/6e/0825817121f8ce2c24adb505367fc6417e88c2

binary file changed (192 → absent bytes)

− .git/objects/6f/a9c224f310679b8695f60248ed373d3056ea82
@@ -1,2 +0,0 @@-xÎÝm!Ea?SÅ4–ŸÅ’¥1ÀEF2Ë-Ï:J÷Ùòz><zoB‹[.2ª&ؤXb^±†œ }¶°:šè<{Ö«Úyb2ìLu1½Xv΄dŠ©ëõ¤JÍ\BQ|ÈcLº³È?to³óF7iÂ[;:~ñúæñüÌ£ªuÑ_WéC;­ÕYÏMÁ¿ÕDžZß1YÚtìêäûO†
− .git/objects/7c/e104b45e8d0d215ae72f5787ddc5abaad112c7

binary file changed (85 → absent bytes)

− .git/objects/83/79ef6f49196d65ef6dbb8044135cd8c465c5e2

binary file changed (1241 → absent bytes)

− .git/objects/9f/188e32dd3dc00eb4f318a36d6fb8796b08561d

binary file changed (347 → absent bytes)

− .git/objects/a1/6cdaa5cb651c69be3bbc882a5d318cfc89298f

binary file changed (242 → absent bytes)

− .git/objects/a1/f0a454435f75be3b739c79538b20ce654874fb

binary file changed (94 → absent bytes)

− .git/objects/a7/4124a8aaac1737c2ea373ec29171e49da5b523

binary file changed (80 → absent bytes)

− .git/objects/ab/2abae0eedde440097437acefcfee6f7d412340

binary file changed (226 → absent bytes)

− .git/objects/b0/a8c19ae0e0f3b83424a1e373e480b35d7367e1
@@ -1,4 +0,0 @@-xËmÃ0Dsfۀ
~%-0‚4àc-X.—1S蕃tÁ%ä8sxó†zkUÀÎæM3h4˜rÈ쨄h-é¦`û…ôìuF›S2Zm8x˜L®8,ž1.v.8qtìSfËÉg¸”…Xá.·>àŠ"7þk
W¸H\ëÞø—ØïgêíŒs>NÖE'íµVG{h-ÿ >·Œœá‡3aÂ;H%ÚÇëɆô_OÚWõ^OY
− .git/objects/b9/e736a84e2d3b944bd5918811b71a6ea34ad398

binary file changed (878 → absent bytes)

− .git/objects/ba/77b722d6557d3eddd05cf97e225246e0811d2c

binary file changed (1619 → absent bytes)

− .git/objects/be/df33621cdf5a3c857be6240ebaf7490c1317c1

binary file changed (196 → absent bytes)

− .git/objects/c9/2fcbb8dde5ce9fd7bae7e0600b2e1281a0073b

binary file changed (48 → absent bytes)

− .git/objects/cb/85c62f8d8c4a948732c7c3c52fd29a99aaee7b

binary file changed (557 → absent bytes)

− .git/objects/ce/0e5371031772295c58e744c9024571b418d93c

binary file changed (45 → absent bytes)

− .git/objects/df/084aacab1794b35c3f7dc324f551906ca08b7a

binary file changed (243 → absent bytes)

− .git/objects/e2/4901fdb01f5c3d9d25720175a6f1890a6f2493

binary file changed (86 → absent bytes)

− .git/objects/ef/90e07580fcba7b182ab7d4e92d62d2a25709d5

binary file changed (568 → absent bytes)

− .git/objects/f1/63b0e6aee2be8c7e76cbe05c3e3081845a5a07

binary file changed (226 → absent bytes)

− .git/objects/f2/588f49ee7d55bc912607a23711cd80d010423e

binary file changed (226 → absent bytes)

− .git/objects/f4/4e5cbbdb56e9a797445e831d9126a4a0542edf

binary file changed (168 → absent bytes)

− .git/objects/f7/3bc87cb6e05735bc4cf7fa15e6009e52c1dc86

binary file changed (47 → absent bytes)

− .git/objects/fd/13d40b730628c9d443aa07bd05dd55e72a4e32

binary file changed (195 → absent bytes)

− .git/objects/pack/pack-2fe5047218c4c2a8c406ce0dbca8bf6fa98a018e.idx

binary file changed (2472 → absent bytes)

− .git/objects/pack/pack-2fe5047218c4c2a8c406ce0dbca8bf6fa98a018e.pack

binary file changed (15068 → absent bytes)

− .git/packed-refs
@@ -1,2 +0,0 @@-# pack-refs with: peeled -df7defd6c9e46afca38576cb5ebd89d20bad3b3e refs/remotes/origin/master
− .git/refs/heads/master
@@ -1,1 +0,0 @@-df084aacab1794b35c3f7dc324f551906ca08b7a
− .git/refs/remotes/origin/HEAD
@@ -1,1 +0,0 @@-ref: refs/remotes/origin/master
− .git/refs/remotes/origin/master
@@ -1,1 +0,0 @@-6e0825817121f8ce2c24adb505367fc6417e88c2
Control/Monad/Imperative.hs view
@@ -4,8 +4,7 @@ -- Maintainer  :  Matthew Mirman <mmirman@andrew.cmu.edu>
 -- Stability   :  experimental
 -- Portability :  portable
--- Description :  A front end for the ImperativeMonad
--- License     :  GNUv3
+-- A front end for the ImperativeMonad
 -- 
 -----------------------------------------------------------------------------
 module Control.Monad.Imperative (module X) where
Control/Monad/Imperative/ImperativeMonad.hs view
@@ -13,9 +13,12 @@ -- Module      :  Control.Monad.Imperative.ImperativeMonad
 -- Maintainer  :  Matthew Mirman <mmirman@andrew.cmu.edu>
 -- Stability   :  experimental
--- Portability :  GADTs, EmptyDataDecls
--- License     :  GNU-3
--- Description :  A module for Imperative haskell code.
+-- Portability :  GADTs, EmptyDataDecls, 
+--                GeneralizedNewtypeDeriving, MultiParamTypeClasses,
+--                FunctionalDependencies, FlexibleInstances,
+--                UndecidableInstances
+-- A module which defines the monad for ImperativeHaskell,  
+-- and some control operator to interact with 'MIO'
 -- 
 -----------------------------------------------------------------------------
 module Control.Monad.Imperative.ImperativeMonad 
@@ -38,7 +41,6 @@        , liftOp4         
        , liftOp5
        , V(Lit)
-       , returnF
        , (=:)
        , (&)
        ) where
Control/Monad/Imperative/ImperativeOperators.hs view
@@ -7,8 +7,7 @@ -- Maintainer  :  Matthew Mirman <mmirman@andrew.cmu.edu>
 -- Stability   :  experimental
 -- Portability :  NoMonomorphismRestriction
--- License     :  GNU-3
--- Description :  Some predefined operators for the imperative monad.
+-- Some predefined operators for the imperative monad.
 -- 
 -----------------------------------------------------------------------------
 module Control.Monad.Imperative.ImperativeOperators where
ImperativeHaskell.cabal view
@@ -1,5 +1,5 @@ Name:                ImperativeHaskell-Version:             0.2.0.0+Version:             0.2.0.1 Description:         A monad that uses GADTs and continuations                      to replicate what it is like to program                      in an imperative language like C or Java@@ -36,5 +36,5 @@                       Control.Monad.Imperative.ImperativeMonad,                       Control.Monad.Imperative.ImperativeOperators   -  Extensions: GADTs, EmptyDataDecls, NoMonomorphismRestriction+  Extensions: GADTs, EmptyDataDecls, NoMonomorphismRestriction,  GeneralizedNewtypeDeriving,  MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, UndecidableInstances     
− ImperativeHaskell/.git/COMMIT_EDITMSG
@@ -1,1 +0,0 @@-updated the documentation
− ImperativeHaskell/.git/HEAD
@@ -1,1 +0,0 @@-ref: refs/heads/master
− ImperativeHaskell/.git/config
@@ -1,12 +0,0 @@-[core]-	repositoryformatversion = 0-	filemode = true-	bare = false-	logallrefupdates = true-	ignorecase = true-[remote "origin"]-	fetch = +refs/heads/*:refs/remotes/origin/*-	url = git@github.com:mmirman/ImperativeHaskell.git-[branch "master"]-	remote = origin-	merge = refs/heads/master
− ImperativeHaskell/.git/description
@@ -1,1 +0,0 @@-Unnamed repository; edit this file 'description' to name the repository.
− ImperativeHaskell/.git/hooks/applypatch-msg.sample
@@ -1,15 +0,0 @@-#!/bin/sh-#-# An example hook script to check the commit log message taken by-# applypatch from an e-mail message.-#-# The hook should exit with non-zero status after issuing an-# appropriate message if it wants to stop the commit.  The hook is-# allowed to edit the commit message file.-#-# To enable this hook, rename this file to "applypatch-msg".--. git-sh-setup-test -x "$GIT_DIR/hooks/commit-msg" &&-	exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}-:
− ImperativeHaskell/.git/hooks/commit-msg.sample
@@ -1,24 +0,0 @@-#!/bin/sh-#-# An example hook script to check the commit log message.-# Called by "git commit" with one argument, the name of the file-# that has the commit message.  The hook should exit with non-zero-# status after issuing an appropriate message if it wants to stop the-# commit.  The hook is allowed to edit the commit message file.-#-# To enable this hook, rename this file to "commit-msg".--# Uncomment the below to add a Signed-off-by line to the message.-# Doing this in a hook is a bad idea in general, but the prepare-commit-msg-# hook is more suited to it.-#-# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')-# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"--# This example catches duplicate Signed-off-by lines.--test "" = "$(grep '^Signed-off-by: ' "$1" |-	 sort | uniq -c | sed -e '/^[ 	]*1[ 	]/d')" || {-	echo >&2 Duplicate Signed-off-by lines.-	exit 1-}
− ImperativeHaskell/.git/hooks/post-commit.sample
@@ -1,8 +0,0 @@-#!/bin/sh-#-# An example hook script that is called after a successful-# commit is made.-#-# To enable this hook, rename this file to "post-commit".--: Nothing
− ImperativeHaskell/.git/hooks/post-receive.sample
@@ -1,15 +0,0 @@-#!/bin/sh-#-# An example hook script for the "post-receive" event.-#-# The "post-receive" script is run after receive-pack has accepted a pack-# and the repository has been updated.  It is passed arguments in through-# stdin in the form-#  <oldrev> <newrev> <refname>-# For example:-#  aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master-#-# see contrib/hooks/ for a sample, or uncomment the next line and-# rename the file to "post-receive".--#. /usr/share/doc/git-core/contrib/hooks/post-receive-email
− ImperativeHaskell/.git/hooks/post-update.sample
@@ -1,8 +0,0 @@-#!/bin/sh-#-# An example hook script to prepare a packed repository for use over-# dumb transports.-#-# To enable this hook, rename this file to "post-update".--exec git update-server-info
− ImperativeHaskell/.git/hooks/pre-applypatch.sample
@@ -1,14 +0,0 @@-#!/bin/sh-#-# An example hook script to verify what is about to be committed-# by applypatch from an e-mail message.-#-# The hook should exit with non-zero status after issuing an-# appropriate message if it wants to stop the commit.-#-# To enable this hook, rename this file to "pre-applypatch".--. git-sh-setup-test -x "$GIT_DIR/hooks/pre-commit" &&-	exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}-:
− ImperativeHaskell/.git/hooks/pre-commit.sample
@@ -1,46 +0,0 @@-#!/bin/sh-#-# An example hook script to verify what is about to be committed.-# Called by "git commit" with no arguments.  The hook should-# exit with non-zero status after issuing an appropriate message if-# it wants to stop the commit.-#-# To enable this hook, rename this file to "pre-commit".--if git rev-parse --verify HEAD >/dev/null 2>&1-then-	against=HEAD-else-	# Initial commit: diff against an empty tree object-	against=4b825dc642cb6eb9a060e54bf8d69288fbee4904-fi--# If you want to allow non-ascii filenames set this variable to true.-allownonascii=$(git config hooks.allownonascii)--# Cross platform projects tend to avoid non-ascii filenames; prevent-# them from being added to the repository. We exploit the fact that the-# printable range starts at the space character and ends with tilde.-if [ "$allownonascii" != "true" ] &&-	# Note that the use of brackets around a tr range is ok here, (it's-	# even required, for portability to Solaris 10's /usr/bin/tr), since-	# the square bracket bytes happen to fall in the designated range.-	test "$(git diff --cached --name-only --diff-filter=A -z $against |-	  LC_ALL=C tr -d '[ -~]\0')"-then-	echo "Error: Attempt to add a non-ascii file name."-	echo-	echo "This can cause problems if you want to work"-	echo "with people on other platforms."-	echo-	echo "To be portable it is advisable to rename the file ..."-	echo-	echo "If you know what you are doing you can disable this"-	echo "check using:"-	echo-	echo "  git config hooks.allownonascii true"-	echo-	exit 1-fi--exec git diff-index --check --cached $against --
− ImperativeHaskell/.git/hooks/pre-rebase.sample
@@ -1,169 +0,0 @@-#!/bin/sh-#-# Copyright (c) 2006, 2008 Junio C Hamano-#-# The "pre-rebase" hook is run just before "git rebase" starts doing-# its job, and can prevent the command from running by exiting with-# non-zero status.-#-# The hook is called with the following parameters:-#-# $1 -- the upstream the series was forked from.-# $2 -- the branch being rebased (or empty when rebasing the current branch).-#-# This sample shows how to prevent topic branches that are already-# merged to 'next' branch from getting rebased, because allowing it-# would result in rebasing already published history.--publish=next-basebranch="$1"-if test "$#" = 2-then-	topic="refs/heads/$2"-else-	topic=`git symbolic-ref HEAD` ||-	exit 0 ;# we do not interrupt rebasing detached HEAD-fi--case "$topic" in-refs/heads/??/*)-	;;-*)-	exit 0 ;# we do not interrupt others.-	;;-esac--# Now we are dealing with a topic branch being rebased-# on top of master.  Is it OK to rebase it?--# Does the topic really exist?-git show-ref -q "$topic" || {-	echo >&2 "No such branch $topic"-	exit 1-}--# Is topic fully merged to master?-not_in_master=`git rev-list --pretty=oneline ^master "$topic"`-if test -z "$not_in_master"-then-	echo >&2 "$topic is fully merged to master; better remove it."-	exit 1 ;# we could allow it, but there is no point.-fi--# Is topic ever merged to next?  If so you should not be rebasing it.-only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`-only_next_2=`git rev-list ^master           ${publish} | sort`-if test "$only_next_1" = "$only_next_2"-then-	not_in_topic=`git rev-list "^$topic" master`-	if test -z "$not_in_topic"-	then-		echo >&2 "$topic is already up-to-date with master"-		exit 1 ;# we could allow it, but there is no point.-	else-		exit 0-	fi-else-	not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`-	/opt/local/bin/perl5.12 -e '-		my $topic = $ARGV[0];-		my $msg = "* $topic has commits already merged to public branch:\n";-		my (%not_in_next) = map {-			/^([0-9a-f]+) /;-			($1 => 1);-		} split(/\n/, $ARGV[1]);-		for my $elem (map {-				/^([0-9a-f]+) (.*)$/;-				[$1 => $2];-			} split(/\n/, $ARGV[2])) {-			if (!exists $not_in_next{$elem->[0]}) {-				if ($msg) {-					print STDERR $msg;-					undef $msg;-				}-				print STDERR " $elem->[1]\n";-			}-		}-	' "$topic" "$not_in_next" "$not_in_master"-	exit 1-fi--exit 0--################################################################--This sample hook safeguards topic branches that have been-published from being rewound.--The workflow assumed here is:-- * Once a topic branch forks from "master", "master" is never-   merged into it again (either directly or indirectly).-- * Once a topic branch is fully cooked and merged into "master",-   it is deleted.  If you need to build on top of it to correct-   earlier mistakes, a new topic branch is created by forking at-   the tip of the "master".  This is not strictly necessary, but-   it makes it easier to keep your history simple.-- * Whenever you need to test or publish your changes to topic-   branches, merge them into "next" branch.--The script, being an example, hardcodes the publish branch name-to be "next", but it is trivial to make it configurable via-$GIT_DIR/config mechanism.--With this workflow, you would want to know:--(1) ... if a topic branch has ever been merged to "next".  Young-    topic branches can have stupid mistakes you would rather-    clean up before publishing, and things that have not been-    merged into other branches can be easily rebased without-    affecting other people.  But once it is published, you would-    not want to rewind it.--(2) ... if a topic branch has been fully merged to "master".-    Then you can delete it.  More importantly, you should not-    build on top of it -- other people may already want to-    change things related to the topic as patches against your-    "master", so if you need further changes, it is better to-    fork the topic (perhaps with the same name) afresh from the-    tip of "master".--Let's look at this example:--		   o---o---o---o---o---o---o---o---o---o "next"-		  /       /           /           /-		 /   a---a---b A     /           /-		/   /               /           /-	       /   /   c---c---c---c B         /-	      /   /   /             \         /-	     /   /   /   b---b C     \       /-	    /   /   /   /             \     /-    ---o---o---o---o---o---o---o---o---o---o---o "master"---A, B and C are topic branches.-- * A has one fix since it was merged up to "next".-- * B has finished.  It has been fully merged up to "master" and "next",-   and is ready to be deleted.-- * C has not merged to "next" at all.--We would want to allow C to be rebased, refuse A, and encourage-B to be deleted.--To compute (1):--	git rev-list ^master ^topic next-	git rev-list ^master        next--	if these match, topic has not merged in next at all.--To compute (2):--	git rev-list master..topic--	if this is empty, it is fully merged to "master".
− ImperativeHaskell/.git/hooks/prepare-commit-msg.sample
@@ -1,36 +0,0 @@-#!/bin/sh-#-# An example hook script to prepare the commit log message.-# Called by "git commit" with the name of the file that has the-# commit message, followed by the description of the commit-# message's source.  The hook's purpose is to edit the commit-# message file.  If the hook fails with a non-zero status,-# the commit is aborted.-#-# To enable this hook, rename this file to "prepare-commit-msg".--# This hook includes three examples.  The first comments out the-# "Conflicts:" part of a merge commit.-#-# The second includes the output of "git diff --name-status -r"-# into the message, just before the "git status" output.  It is-# commented because it doesn't cope with --amend or with squashed-# commits.-#-# The third example adds a Signed-off-by line to the message, that can-# still be edited.  This is rarely a good idea.--case "$2,$3" in-  merge,)-    /opt/local/bin/perl5.12 -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;--# ,|template,)-#   /opt/local/bin/perl5.12 -i.bak -pe '-#      print "\n" . `git diff --cached --name-status -r`-#	 if /^#/ && $first++ == 0' "$1" ;;--  *) ;;-esac--# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')-# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
− ImperativeHaskell/.git/hooks/update.sample
@@ -1,128 +0,0 @@-#!/bin/sh-#-# An example hook script to blocks unannotated tags from entering.-# Called by "git receive-pack" with arguments: refname sha1-old sha1-new-#-# To enable this hook, rename this file to "update".-#-# Config-# -------# hooks.allowunannotated-#   This boolean sets whether unannotated tags will be allowed into the-#   repository.  By default they won't be.-# hooks.allowdeletetag-#   This boolean sets whether deleting tags will be allowed in the-#   repository.  By default they won't be.-# hooks.allowmodifytag-#   This boolean sets whether a tag may be modified after creation. By default-#   it won't be.-# hooks.allowdeletebranch-#   This boolean sets whether deleting branches will be allowed in the-#   repository.  By default they won't be.-# hooks.denycreatebranch-#   This boolean sets whether remotely creating branches will be denied-#   in the repository.  By default this is allowed.-#--# --- Command line-refname="$1"-oldrev="$2"-newrev="$3"--# --- Safety check-if [ -z "$GIT_DIR" ]; then-	echo "Don't run this script from the command line." >&2-	echo " (if you want, you could supply GIT_DIR then run" >&2-	echo "  $0 <ref> <oldrev> <newrev>)" >&2-	exit 1-fi--if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then-	echo "Usage: $0 <ref> <oldrev> <newrev>" >&2-	exit 1-fi--# --- Config-allowunannotated=$(git config --bool hooks.allowunannotated)-allowdeletebranch=$(git config --bool hooks.allowdeletebranch)-denycreatebranch=$(git config --bool hooks.denycreatebranch)-allowdeletetag=$(git config --bool hooks.allowdeletetag)-allowmodifytag=$(git config --bool hooks.allowmodifytag)--# check for no description-projectdesc=$(sed -e '1q' "$GIT_DIR/description")-case "$projectdesc" in-"Unnamed repository"* | "")-	echo "*** Project description file hasn't been set" >&2-	exit 1-	;;-esac--# --- Check types-# if $newrev is 0000...0000, it's a commit to delete a ref.-zero="0000000000000000000000000000000000000000"-if [ "$newrev" = "$zero" ]; then-	newrev_type=delete-else-	newrev_type=$(git cat-file -t $newrev)-fi--case "$refname","$newrev_type" in-	refs/tags/*,commit)-		# un-annotated tag-		short_refname=${refname##refs/tags/}-		if [ "$allowunannotated" != "true" ]; then-			echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2-			echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2-			exit 1-		fi-		;;-	refs/tags/*,delete)-		# delete tag-		if [ "$allowdeletetag" != "true" ]; then-			echo "*** Deleting a tag is not allowed in this repository" >&2-			exit 1-		fi-		;;-	refs/tags/*,tag)-		# annotated tag-		if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1-		then-			echo "*** Tag '$refname' already exists." >&2-			echo "*** Modifying a tag is not allowed in this repository." >&2-			exit 1-		fi-		;;-	refs/heads/*,commit)-		# branch-		if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then-			echo "*** Creating a branch is not allowed in this repository" >&2-			exit 1-		fi-		;;-	refs/heads/*,delete)-		# delete branch-		if [ "$allowdeletebranch" != "true" ]; then-			echo "*** Deleting a branch is not allowed in this repository" >&2-			exit 1-		fi-		;;-	refs/remotes/*,commit)-		# tracking branch-		;;-	refs/remotes/*,delete)-		# delete tracking branch-		if [ "$allowdeletebranch" != "true" ]; then-			echo "*** Deleting a tracking branch is not allowed in this repository" >&2-			exit 1-		fi-		;;-	*)-		# Anything else (is there anything else?)-		echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2-		exit 1-		;;-esac--# --- Finished-exit 0
− ImperativeHaskell/.git/index

binary file changed (728 → absent bytes)

− ImperativeHaskell/.git/info/exclude
@@ -1,6 +0,0 @@-# git ls-files --others --exclude-from=.git/info/exclude-# Lines that start with '#' are comments.-# For a project mostly in C, the following would be a good set of-# exclude patterns (uncomment them if you want to use them):-# *.[oa]-# *~
− ImperativeHaskell/.git/logs/HEAD
@@ -1,13 +0,0 @@-0000000000000000000000000000000000000000 df7defd6c9e46afca38576cb5ebd89d20bad3b3e Matthew Mirman <titaniumeyes@aol.com> 1334780941 -0400	clone: from git@github.com:mmirman/ImperativeHaskell.git-df7defd6c9e46afca38576cb5ebd89d20bad3b3e f44e5cbbdb56e9a797445e831d9126a4a0542edf Matthew Mirman <titaniumeyes@aol.com> 1334781285 -0400	commit: Updated the .cabal-f44e5cbbdb56e9a797445e831d9126a4a0542edf 3c71805404049f0d64221313415cca97d5bfa15f Matthew Mirman <titaniumeyes@aol.com> 1334781305 -0400	commit: Moved the README back to a realistic location-3c71805404049f0d64221313415cca97d5bfa15f 13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d Matthew Mirman <titaniumeyes@aol.com> 1334782799 -0400	commit: updated the .cabal-13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d 6fa9c224f310679b8695f60248ed373d3056ea82 Matthew Mirman <titaniumeyes@aol.com> 1334859718 -0400	commit: moved imperative up-6fa9c224f310679b8695f60248ed373d3056ea82 22c324eaf52c21034500ee0054f5d7057ed9cb95 Matthew Mirman <titaniumeyes@aol.com> 1334860946 -0400	commit: fixed ImperativeHaskell.cabal to work-22c324eaf52c21034500ee0054f5d7057ed9cb95 61553f3af4ea8927fa6e83e4bde2eb2131eff9ce Matthew Mirman <titaniumeyes@aol.com> 1334861178 -0400	commit: fixed the .cabal's base to include that base that I am using-61553f3af4ea8927fa6e83e4bde2eb2131eff9ce b0a8c19ae0e0f3b83424a1e373e480b35d7367e1 Matthew Mirman <titaniumeyes@aol.com> 1334862382 -0400	commit: Updaed the .cabal to the current package version-b0a8c19ae0e0f3b83424a1e373e480b35d7367e1 6e0825817121f8ce2c24adb505367fc6417e88c2 Matthew Mirman <titaniumeyes@aol.com> 1334971912 -0400	commit: Updated the readme to point to the relevant blog post-6e0825817121f8ce2c24adb505367fc6417e88c2 df084aacab1794b35c3f7dc324f551906ca08b7a Matthew Mirman <titaniumeyes@aol.com> 1335210914 -0400	commit: added two classes to make functions callable in places values are requested, and added a more general return', also changed auto to new-df084aacab1794b35c3f7dc324f551906ca08b7a 852366921764c694dac476d8d1097ff11176675d Matthew Mirman <titaniumeyes@aol.com> 1335211105 -0400	commit: fixed the .cabal and the headers to reflect the changes-852366921764c694dac476d8d1097ff11176675d 2993a9cc0442bb5e0132fbfe285f47d5e224d07e Matthew Mirman <titaniumeyes@aol.com> 1335211162 -0400	commit: removed the extra returnF export-2993a9cc0442bb5e0132fbfe285f47d5e224d07e 850fdfb3bae5331da0143bc338c9c2fba14c3e60 Matthew Mirman <titaniumeyes@aol.com> 1335211384 -0400	commit: updated the documentation
− ImperativeHaskell/.git/logs/refs/heads/master
@@ -1,13 +0,0 @@-0000000000000000000000000000000000000000 df7defd6c9e46afca38576cb5ebd89d20bad3b3e Matthew Mirman <titaniumeyes@aol.com> 1334780941 -0400	clone: from git@github.com:mmirman/ImperativeHaskell.git-df7defd6c9e46afca38576cb5ebd89d20bad3b3e f44e5cbbdb56e9a797445e831d9126a4a0542edf Matthew Mirman <titaniumeyes@aol.com> 1334781285 -0400	commit: Updated the .cabal-f44e5cbbdb56e9a797445e831d9126a4a0542edf 3c71805404049f0d64221313415cca97d5bfa15f Matthew Mirman <titaniumeyes@aol.com> 1334781305 -0400	commit: Moved the README back to a realistic location-3c71805404049f0d64221313415cca97d5bfa15f 13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d Matthew Mirman <titaniumeyes@aol.com> 1334782799 -0400	commit: updated the .cabal-13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d 6fa9c224f310679b8695f60248ed373d3056ea82 Matthew Mirman <titaniumeyes@aol.com> 1334859718 -0400	commit: moved imperative up-6fa9c224f310679b8695f60248ed373d3056ea82 22c324eaf52c21034500ee0054f5d7057ed9cb95 Matthew Mirman <titaniumeyes@aol.com> 1334860946 -0400	commit: fixed ImperativeHaskell.cabal to work-22c324eaf52c21034500ee0054f5d7057ed9cb95 61553f3af4ea8927fa6e83e4bde2eb2131eff9ce Matthew Mirman <titaniumeyes@aol.com> 1334861178 -0400	commit: fixed the .cabal's base to include that base that I am using-61553f3af4ea8927fa6e83e4bde2eb2131eff9ce b0a8c19ae0e0f3b83424a1e373e480b35d7367e1 Matthew Mirman <titaniumeyes@aol.com> 1334862382 -0400	commit: Updaed the .cabal to the current package version-b0a8c19ae0e0f3b83424a1e373e480b35d7367e1 6e0825817121f8ce2c24adb505367fc6417e88c2 Matthew Mirman <titaniumeyes@aol.com> 1334971912 -0400	commit: Updated the readme to point to the relevant blog post-6e0825817121f8ce2c24adb505367fc6417e88c2 df084aacab1794b35c3f7dc324f551906ca08b7a Matthew Mirman <titaniumeyes@aol.com> 1335210914 -0400	commit: added two classes to make functions callable in places values are requested, and added a more general return', also changed auto to new-df084aacab1794b35c3f7dc324f551906ca08b7a 852366921764c694dac476d8d1097ff11176675d Matthew Mirman <titaniumeyes@aol.com> 1335211105 -0400	commit: fixed the .cabal and the headers to reflect the changes-852366921764c694dac476d8d1097ff11176675d 2993a9cc0442bb5e0132fbfe285f47d5e224d07e Matthew Mirman <titaniumeyes@aol.com> 1335211162 -0400	commit: removed the extra returnF export-2993a9cc0442bb5e0132fbfe285f47d5e224d07e 850fdfb3bae5331da0143bc338c9c2fba14c3e60 Matthew Mirman <titaniumeyes@aol.com> 1335211384 -0400	commit: updated the documentation
− ImperativeHaskell/.git/logs/refs/remotes/origin/master
@@ -1,5 +0,0 @@-df7defd6c9e46afca38576cb5ebd89d20bad3b3e 13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d Matthew Mirman <titaniumeyes@aol.com> 1334782805 -0400	update by push-13ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d 61553f3af4ea8927fa6e83e4bde2eb2131eff9ce Matthew Mirman <titaniumeyes@aol.com> 1334861186 -0400	update by push-61553f3af4ea8927fa6e83e4bde2eb2131eff9ce 6e0825817121f8ce2c24adb505367fc6417e88c2 Matthew Mirman <titaniumeyes@aol.com> 1334971916 -0400	update by push-6e0825817121f8ce2c24adb505367fc6417e88c2 2993a9cc0442bb5e0132fbfe285f47d5e224d07e Matthew Mirman <titaniumeyes@aol.com> 1335211168 -0400	update by push-2993a9cc0442bb5e0132fbfe285f47d5e224d07e 850fdfb3bae5331da0143bc338c9c2fba14c3e60 Matthew Mirman <titaniumeyes@aol.com> 1335211394 -0400	update by push
− ImperativeHaskell/.git/objects/01/6acde47628279b666290c9dc9191adb7dc653a

binary file changed (85 → absent bytes)

− ImperativeHaskell/.git/objects/0a/1abd5de3cf5822c055651be49c0740da2dbb10

binary file changed (225 → absent bytes)

− ImperativeHaskell/.git/objects/0b/7d578c0025e285b92f790f55ca47ffae3a5fe7

binary file changed (47 → absent bytes)

− ImperativeHaskell/.git/objects/11/a89507307aeab1a1284fedbce84afc91a0c992

binary file changed (226 → absent bytes)

− ImperativeHaskell/.git/objects/13/61be48fd838579786b5aabfc70fd7a1250dac8

binary file changed (47 → absent bytes)

− ImperativeHaskell/.git/objects/13/ea5de1f48b6023a4416b1d1fa8f93b0dfcad6d
@@ -1,2 +0,0 @@-xŽAŽÂ0EYç¾À :Np#!Ä8„븢iQq…æö“3ŒÞî/Þºµ¶8Ą'ßÍ@8aL2Šˆ"k4!&ÓXÑR©’§)¼e·Õ”qr:eê%ň„”0«JᚧY0ÏAn;<Äýi_x,{“®¾¸¬ËÑì×>wÙ^gÝÚ
(ñ¹øéæ!ôµgºý[Žw·-ýÎ*“¼Â/„L¶
− ImperativeHaskell/.git/objects/16/fe73c8a57c56fa51da5ed4d259614270f45c44

binary file changed (262 → absent bytes)

− ImperativeHaskell/.git/objects/1b/7ae0fd289a218bb3c18711bbb72e0d2f6ff52d

binary file changed (550 → absent bytes)

− ImperativeHaskell/.git/objects/22/c324eaf52c21034500ee0054f5d7057ed9cb95
@@ -1,1 +0,0 @@-xAn!sæóG,`X$+ÊÑ9ø³ÐÈÈËbáqœü>û†\ûPUzkUÈxý& ^/
ä紎ÁÙÀ	%À—Ýd¬Óêː/“1®ØIû—ÙÇcñڸٛ­>zðl?åÚ]XäŠ]êh¼ÑIªðVŸ
¿x|r_ßSo4Yëf¯£ótÐ{„Ú×=Sðo€*õ™¾Úƒ¥~ã̏ÖÝ·ß]I:½ú¸©?r#Uq
− ImperativeHaskell/.git/objects/29/93a9cc0442bb5e0132fbfe285f47d5e224d07e
@@ -1,2 +0,0 @@-xŽKN1CYçuP¾•D¡Y±›CT’jMK¤3-Õܞœ¥m=Ûuô¾Ø^d2C©5焮`,›uI—Š6¹Ô4¶jÌV=U*èԃ&)X‡˜­‰è+fߨúˆ-5£sÜ6cV€14E§ÜDމÜùnûìtÀEv¡c?;ÿòוÆç[ýŒsÁ.-¼j¯µZîº)üï5¹'7XëÀ?2	&Ë9¥cŠúÎ6R–
− ImperativeHaskell/.git/objects/32/20183a054c44174eca29bd7e4f74253fa98d1b

binary file changed (2376 → absent bytes)

− ImperativeHaskell/.git/objects/3c/71805404049f0d64221313415cca97d5bfa15f

binary file changed (190 → absent bytes)

− ImperativeHaskell/.git/objects/3d/f66baae2b65e3cc058cd4b96c923395231ec0d

binary file changed (93 → absent bytes)

− ImperativeHaskell/.git/objects/3f/f4f6afff27246be0b826adf182e09134a9f0d4

binary file changed (226 → absent bytes)

− ImperativeHaskell/.git/objects/4c/ee439117e43cf393fde2d5400edfbd98a2c026
@@ -1,2 +0,0 @@-x%ÎÍj1àž÷)tË%ñþ@/¹JôŠìUׯ²elmHÞ¾¦sf>Ëba™>?{S(UäÔ£Â[$æ8Ì`	´îü†-UÔð¤3`^ž”E"pˆ73_R¡I"°èâVeÏëù¨„^µ\Ç1JMèd%cY¶VD“4.Ó<=îÒôÍtñ‡ágžŒ×ÄÇvçÐSa‚½áÖ!ÿÿ}üC6¾uÃąHz
− ImperativeHaskell/.git/objects/4e/c4a30a22a499ca95ef5c826ec86b820ccc17b7
@@ -1,3 +0,0 @@-x­Q=KÄ@µä?¼Ò“âDQ¬®l®Ý¸“ËÀ~„½ñÀïÜDÔæ-áì°Ë¼yóxÛ¹Øáæöú¢:'Ê¢ªð©µ‰vrÅðCNÑÕMÆÖ?R2™ßiáY%@¸Éy 
'oî½×Ë£	6Ñ\¿ù©&;=èèk6;ÎY$£ô!ÂìIäœö_búaHÔ§[Ö>¡Ob,ú˜ KñëLªÆ±œeá—lNe‚ËoÂv…y $n˂ýÑûÉÿDªÆaöØb`Ëa§zÜÚñ-Žû܎ëÕ[ý¬˜ö*Z_t~¥\
− ImperativeHaskell/.git/objects/50/b441aca5bce63079769ffb015768fdbe213b70
@@ -1,1 +0,0 @@-x­QÁJÃ@õÈ?!mL^Š%-‘"˜VZü€M3¡ÙLØlŒEýwg7Zl¢Ð]†7;yÍJÊ`<¾¹x‹ð8_.žç‹{߃%¥T‘"]ïd£ÖØ-·FRŵAôá{Ñ9ÃÒÁ»»SÊÛÁÅàŽ*£©ŒÙÈãU£F¾àtå0ÒMß/deø àþT³ÃR©•¨ QÊ%·¢Ê5vñVµ1æí̵nŒÈd)͞Ź_™X*dºÒ՟H^pý—ñ4RµÆ6“}»„‚4°'‡a@¹éœˆ½Î¾§ú…þg‘ÐíP£ïù{ä¡ÿòîƒ `5YìWõ”²0«úzhi|/§“!LyÒ¾Aȕ`tŠŽ,¢‘E/OQærìA[ê/AûzvŒÍ,c½ƒcÌê£QÝú
− ImperativeHaskell/.git/objects/52/f49ecd1fcef550c86e7af737810a84c463a5fb

binary file changed (568 → absent bytes)

− ImperativeHaskell/.git/objects/53/c4b3fec17c1360de0070e11e57d94dfd55ec37

binary file changed (339 → absent bytes)

− ImperativeHaskell/.git/objects/56/6b9fea2f24763dd382cdaafb4996b3a6b6dea6
@@ -1,1 +0,0 @@-x­TïÚ8½ÏHüOí©·l(Tmut·º”.	XÄUûÑ$±.±#Ç!¥Ûþï;	¬NÚût‘ ç͛7cïµÇàÝÛ¿~{¼~‰¹¿œîüé]»…©ÿy›ÓûåõÏv«Ýºþ?‡î¡Â"ápÏX0!ݺ_˜Xé'ëÆÄ¼ÄBè”It¦îëo&CÍK/H‡º.xcØ^$œ(ž@ù·Œk‘riXâü+¥Ï;ȟ93áÎ÷™ç™JÚX_R8K3â˜VT#¢5VÒh•x%YèÍRÂgF+3—yUÁL—»ãçpc•´8ĝqÃ׃¡-ýi‰—½ÛXäÈ´:h–‚>#Í9r™’i>ÂIHÍC‘-ö…á$LŸ˜i-2ä¤$×i9ƒØaÊ%‘`Uì áÏ(·]Écb_Ùø‰e±©Y`¢™P².ȯqä:·¾i’Ôˆ=(íèt˜±ä5”»KŒOHkb½çE¸ÔBHWD¬2*+&T*´I‚=G‘ó¨Hzˆ”Á×ÙöËýnù€¯þzí/·h7
yù‘WX‚.¨`’X3Is¤"±¸[¿PŒÿi6Ÿm¨LfÛåÝfƒÉý>Vþz;ïæþ«Ýzu¿¹ó€
IEš8„ÿÚVª4GÈ
Iþ¤üjrN“1;rjvÀiÜB04JÄσ»Ü,QòàŠ%:—¡"†³R™rbz“úý²,½ƒ,<¥}š;Íyÿ£½êƒ`Ï*Jê5UÖn‘dtŒ°Ò<)BŽX„‚’uöš³èTÖîçN»•—,ëèAzØÅ-¢BîþŽPµ[tÑó7×`…Qn–#!yø¡ñ܎ µ¥°æ°1‡ÖüNÖOúµ[ŒÒ‚æý¹Dìœèu!Ï+MÛ±õ€ 3º`0@¬¯¶*óêâí¢ªÅòX±¶ŸÒV§±+"úÃ7PïIA»Þ<Ý?BÜÕÒ,6AëüoÿäZQ'©T°‘Nut^u%‘§ëžA57…–HZ©¨ù¶ë·®%€±’èB^n@œ•µŒ³ÂlŒžKªûÅF¥tm4ºðâêŠFº„i·~„Ü
− ImperativeHaskell/.git/objects/58/142aaf2c67098d5485f39d0b2a9b5192e3b454

binary file changed (871 → absent bytes)

− ImperativeHaskell/.git/objects/5b/d6e430e9a65225607dd76ca7384e8d15890a03
@@ -1,3 +0,0 @@-x¥TmoÚ0Þ×úWœøÐOÄÀº
µhPÛ	Ø4¦}w’ƒXø%²hþ}/	,ME¥I³Å–ïžçcec¾|~·Çðj<êò€ÂïQ)ö—Öt-‡|Äécsô‰“yèLA[#R™Pxôp?ÿö L-‰5Aš‚¬ñìy³
æJ&" +IӃ’{:̝Ý9¡/;KC4 ÿfJ˜]!vظÏÀ:ø.â²÷Q†zCáL¯½­uÕ/v(öÕâ=Òú2@•¢.‚ˆR[thôœmJcs/ýøªÎqJÑÄN¸ˆŽNRMvÐÖ|(	!k$àŒ=X9eÑQ!!÷ãÁ`GQ1O¬h-fÐBedK™ ñ]¸ÿ¹ŒnØù,ÚJÕ,g‹õfÁØ´™uj€•!Ã#¬jBÆVBš@¾4ìÁí)¼¯T&‡Gžè‚cZL›‘Ö;ëÊɌzÅYÅØ·Bª4-eÞ°!‘V®±Pѡۥ“»ÿÄØÆ.ÁˆÚÉz2)I×bQñh¯,u[ÝÄ´ÿǒòʕJWI4›@SÌѤþœK,<Âä>ð!\_Ã-|ä÷ú@x¶½áCvÕ4MͰx¢T0´M…
Ç©N|UÝ:ÞJß§ˆ.·ì_¸ÖPÿáÿ£~E¬«®8ÍÅS Þ«®ü¸yú°Ðy(ç"ˆ9&Ê÷am‰ÓjëòLzý}p2©$©“`Ï~É[	
− ImperativeHaskell/.git/objects/5c/8c8b7980f010d89c33dcc14678cbff61022c84

binary file changed (86 → absent bytes)

− ImperativeHaskell/.git/objects/61/553f3af4ea8927fa6e83e4bde2eb2131eff9ce

binary file changed (196 → absent bytes)

− ImperativeHaskell/.git/objects/64/28694338ff041ea1e8b44746a61d79ba0d12ef

binary file changed (94 → absent bytes)

− ImperativeHaskell/.git/objects/64/e722e001bcdd0acfa511d7f176658afcdd07a8

binary file changed (80 → absent bytes)

− ImperativeHaskell/.git/objects/6d/51fd1f999dec9c763ac06630c5ea3ed71919f5

binary file changed (565 → absent bytes)

− ImperativeHaskell/.git/objects/6d/7ec056a33b1cbd2a8845e35b71092dac436ae5

binary file changed (570 → absent bytes)

− ImperativeHaskell/.git/objects/6e/0825817121f8ce2c24adb505367fc6417e88c2

binary file changed (192 → absent bytes)

− ImperativeHaskell/.git/objects/6f/a9c224f310679b8695f60248ed373d3056ea82
@@ -1,2 +0,0 @@-xÎÝm!Ea?SÅ4–ŸÅ’¥1ÀEF2Ë-Ï:J÷Ùòz><zoB‹[.2ª&ؤXb^±†œ }¶°:šè<{Ö«Úyb2ìLu1½Xv΄dŠ©ëõ¤JÍ\BQ|ÈcLº³È?to³óF7iÂ[;:~ñúæñüÌ£ªuÑ_WéC;­ÕYÏMÁ¿ÕDžZß1YÚtìêäûO†
− ImperativeHaskell/.git/objects/70/9c2f6dea81ca7a8c563c05f26d02f15eca7271

binary file changed (47 → absent bytes)

− ImperativeHaskell/.git/objects/77/68fc297986b185ee266ce11bc165eb6fd916ee

binary file changed (47 → absent bytes)

− ImperativeHaskell/.git/objects/7c/e104b45e8d0d215ae72f5787ddc5abaad112c7

binary file changed (85 → absent bytes)

− ImperativeHaskell/.git/objects/7e/8229b3957af78a64a8e4e1e40d9af80460afd7

binary file changed (225 → absent bytes)

− ImperativeHaskell/.git/objects/83/79ef6f49196d65ef6dbb8044135cd8c465c5e2

binary file changed (1241 → absent bytes)

− ImperativeHaskell/.git/objects/84/0c0a930e5e486bd75fd9eca9dc33ae03ebad25

binary file changed (225 → absent bytes)

− ImperativeHaskell/.git/objects/85/0fdfb3bae5331da0143bc338c9c2fba14c3e60

binary file changed (172 → absent bytes)

− ImperativeHaskell/.git/objects/85/2366921764c694dac476d8d1097ff11176675d

binary file changed (191 → absent bytes)

− ImperativeHaskell/.git/objects/90/635dcf47144403e7f316b098850e9dc98df0bd

binary file changed (641 → absent bytes)

− ImperativeHaskell/.git/objects/99/e4d79afddff7c3f8c57c975d066e5e20e8823f

binary file changed (2397 → absent bytes)

− ImperativeHaskell/.git/objects/9a/22ba0ce6e904df7c9dda0e39b7961685876555

binary file changed (2408 → absent bytes)

− ImperativeHaskell/.git/objects/9f/188e32dd3dc00eb4f318a36d6fb8796b08561d

binary file changed (347 → absent bytes)

− ImperativeHaskell/.git/objects/a1/6cdaa5cb651c69be3bbc882a5d318cfc89298f

binary file changed (242 → absent bytes)

− ImperativeHaskell/.git/objects/a1/f0a454435f75be3b739c79538b20ce654874fb

binary file changed (94 → absent bytes)

− ImperativeHaskell/.git/objects/a7/4124a8aaac1737c2ea373ec29171e49da5b523

binary file changed (80 → absent bytes)

− ImperativeHaskell/.git/objects/ab/2abae0eedde440097437acefcfee6f7d412340

binary file changed (226 → absent bytes)

− ImperativeHaskell/.git/objects/ac/38a6cb36b8beafa100c9937f4b1aa0b17e2986

binary file changed (94 → absent bytes)

− ImperativeHaskell/.git/objects/b0/a8c19ae0e0f3b83424a1e373e480b35d7367e1
@@ -1,4 +0,0 @@-xËmÃ0Dsfۀ
~%-0‚4àc-X.—1S蕃tÁ%ä8sxó†zkUÀÎæM3h4˜rÈ쨄h-é¦`û…ôìuF›S2Zm8x˜L®8,ž1.v.8qtìSfËÉg¸”…Xá.·>àŠ"7þk
W¸H\ëÞø—ØïgêíŒs>NÖE'íµVG{h-ÿ >·Œœá‡3aÂ;H%ÚÇëɆô_OÚWõ^OY
− ImperativeHaskell/.git/objects/b9/e736a84e2d3b944bd5918811b71a6ea34ad398

binary file changed (878 → absent bytes)

− ImperativeHaskell/.git/objects/ba/77b722d6557d3eddd05cf97e225246e0811d2c

binary file changed (1619 → absent bytes)

− ImperativeHaskell/.git/objects/bb/6f7b72c64e9026f7b34e52edf4c2c1676f43e6

binary file changed (2400 → absent bytes)

− ImperativeHaskell/.git/objects/bc/c99863b67bf2380bc62838d06dc11fc4acab63

binary file changed (226 → absent bytes)

− ImperativeHaskell/.git/objects/be/df33621cdf5a3c857be6240ebaf7490c1317c1

binary file changed (196 → absent bytes)

− ImperativeHaskell/.git/objects/c2/d854de8f28562adad5fa158dce2e334f0f4358

binary file changed (86 → absent bytes)

− ImperativeHaskell/.git/objects/c9/2fcbb8dde5ce9fd7bae7e0600b2e1281a0073b

binary file changed (48 → absent bytes)

− ImperativeHaskell/.git/objects/cb/85c62f8d8c4a948732c7c3c52fd29a99aaee7b

binary file changed (557 → absent bytes)

− ImperativeHaskell/.git/objects/ce/0e5371031772295c58e744c9024571b418d93c

binary file changed (45 → absent bytes)

− ImperativeHaskell/.git/objects/da/7035231ba97f2db1d5a1f2e09c28f9afccfdf1

binary file changed (94 → absent bytes)

− ImperativeHaskell/.git/objects/df/084aacab1794b35c3f7dc324f551906ca08b7a

binary file changed (243 → absent bytes)

− ImperativeHaskell/.git/objects/e2/4901fdb01f5c3d9d25720175a6f1890a6f2493

binary file changed (86 → absent bytes)

− ImperativeHaskell/.git/objects/e9/fa7a13df7399b47c5f5dd1b5b67c303bff488c

binary file changed (86 → absent bytes)

− ImperativeHaskell/.git/objects/ef/17656a91df4096573fc35cca8c6476cd25a17e

binary file changed (94 → absent bytes)

− ImperativeHaskell/.git/objects/ef/90e07580fcba7b182ab7d4e92d62d2a25709d5

binary file changed (568 → absent bytes)

− ImperativeHaskell/.git/objects/f1/63b0e6aee2be8c7e76cbe05c3e3081845a5a07

binary file changed (226 → absent bytes)

− ImperativeHaskell/.git/objects/f2/588f49ee7d55bc912607a23711cd80d010423e

binary file changed (226 → absent bytes)

− ImperativeHaskell/.git/objects/f4/4e5cbbdb56e9a797445e831d9126a4a0542edf

binary file changed (168 → absent bytes)

− ImperativeHaskell/.git/objects/f7/3bc87cb6e05735bc4cf7fa15e6009e52c1dc86

binary file changed (47 → absent bytes)

− ImperativeHaskell/.git/objects/fd/13d40b730628c9d443aa07bd05dd55e72a4e32

binary file changed (195 → absent bytes)

− ImperativeHaskell/.git/objects/pack/pack-2fe5047218c4c2a8c406ce0dbca8bf6fa

binary file changed (15068 → absent bytes)

− ImperativeHaskell/.git/packed-refs
@@ -1,2 +0,0 @@-# pack-refs with: peeled -df7defd6c9e46afca38576cb5ebd89d20bad3b3e refs/remotes/origin/master
− ImperativeHaskell/.git/refs/heads/master
@@ -1,1 +0,0 @@-850fdfb3bae5331da0143bc338c9c2fba14c3e60
− ImperativeHaskell/.git/refs/remotes/origin/HEAD
@@ -1,1 +0,0 @@-ref: refs/remotes/origin/master
− ImperativeHaskell/.git/refs/remotes/origin/master
@@ -1,1 +0,0 @@-850fdfb3bae5331da0143bc338c9c2fba14c3e60
− ImperativeHaskell/Control/Monad/Imperative.hs
@@ -1,13 +0,0 @@------------------------------------------------------------------------------
--- |
--- Module      :  Control.Monad.Imperative
--- Maintainer  :  Matthew Mirman <mmirman@andrew.cmu.edu>
--- Stability   :  experimental
--- Portability :  portable
--- A front end for the ImperativeMonad
--- 
------------------------------------------------------------------------------
-module Control.Monad.Imperative (module X) where
-
-import Control.Monad.Imperative.ImperativeMonad as X hiding (modifyOp, liftOp2)
-import Control.Monad.Imperative.ImperativeOperators as X
− ImperativeHaskell/Control/Monad/Imperative/ImperativeMonad.hs
@@ -1,231 +0,0 @@-{-# LANGUAGE
- GADTs,
- EmptyDataDecls,
- GeneralizedNewtypeDeriving,
- MultiParamTypeClasses,
- FunctionalDependencies,
- FlexibleInstances,
- UndecidableInstances
- #-}
-
------------------------------------------------------------------------------
--- |
--- Module      :  Control.Monad.Imperative.ImperativeMonad
--- Maintainer  :  Matthew Mirman <mmirman@andrew.cmu.edu>
--- Stability   :  experimental
--- Portability :  GADTs, EmptyDataDecls, 
---                GeneralizedNewtypeDeriving, MultiParamTypeClasses,
---                FunctionalDependencies, FlexibleInstances,
---                UndecidableInstances
--- A module which defines the monad for ImperativeHaskell,  
--- and some control operator to interact with 'MIO'
--- 
------------------------------------------------------------------------------
-module Control.Monad.Imperative.ImperativeMonad 
-       ( modifyOp
-       , if'
-       , for'
-       , while'
-       , break'
-       , continue'
-       , return'
-       , returnV
-       , returnF
-       , function 
-       , new
-       , auto
-       , runImperative
-       , liftOp
-       , liftOp2
-       , liftOp3         
-       , liftOp4         
-       , liftOp5
-       , V(Lit)
-       , (=:)
-       , (&)
-       ) where
-
-import Control.Monad.Cont
-import Control.Monad.Reader
-import Data.IORef
-
-newtype MIO r a = MIO { getMIO :: ReaderT (Control r) (ContT r IO) a }
-                deriving (Monad, MonadCont)
-
-data Var
-data Val
-data Comp
-
-data Control r = InFunction (r -> ContT r IO ())
-               | InLoop { controlBreak::MIO r ()
-                        , controlContinue::MIO r ()
-                        , controlReturn:: r -> MIO r ()
-                        }
-
--- | @'returnF' value@ acts like the imperative return, where
--- if called, it will exit the current function and place the 
--- returned value into the current continuation.  Note, this
--- doesn't work inside of loops.  Inside of loops, we need
--- 'returnV'
-returnF :: V a b b -> MIO b b
-returnF v = MIO $ do
-  v' <- getMIO $ val v
-  a <- ask
-  case a of
-    InLoop _ _ ret -> getMIO $ ret v'
-    InFunction ret -> lift $ ret v'
-  return v'
-  
--- | @'returnV' value@ acts like the imperative return, where
--- if called, it will exit the current function and place the 
--- returned value into the current continuation.  Note, this
--- doesn't work as a last function call.
-returnV :: V a b b -> MIO b ()
-returnV a = returnF a >> return ()
-
-class Returnable b r where
-  -- | @'return''@ can act as returnF or returnV depending on use
-  -- if it does not work, it is likely that type inference
-  -- could not figure out a sensible alternative.
-  return' :: V a b b -> MIO b r
-
-instance Returnable b () where
-  return' a = returnV a 
-
-instance Returnable b b where
-  return' a = returnF a
-
-
-runImperative :: MIO a a -> IO a
-runImperative foo = do
-  a <- runContT (callCC $ \ret -> runReaderT (getMIO foo) $ InFunction ret) return
-  return a
-
--- | @'function' foo@ takes an ImperativeMonad action and removes it from it's  
--- specific function context, specifically making it applicable 
--- in the body of other functions.
-function :: MIO a a -> MIO b a
-function = MIO . liftIO . runImperative
-
--- | @'break'@ exists the current loop.
-break' :: MIO a ()
-break' = do
-  a <- MIO $ ask
-  case a of
-    InLoop br _ _ -> br
-    _ -> return ()
-    
--- | @'continue'@ continues the current loop, passing over
--- any control flow that is defined.
-continue' :: MIO a ()
-continue' = do
-  a <- MIO $ ask
-  case a of
-    InLoop _ con _ -> con
-    _ -> return ()
-
-data V b r a where
-  R :: IORef a -> V Var r a
-  Lit :: a -> V Val r a
-  C :: MIO r (V b r a) -> V Comp r a
-
-
-val :: V b r a -> MIO r a
-val v = case v of
-  R r -> MIO $ liftIO $ readIORef r
-  Lit v -> return v
-  C m -> val =<< m
-
--- | @('&')a@ gets a reference/pointer to the variable specified
-(&) :: V Var r a -> V Var s a
-(&) (R a) = R a
-
--- | @auto@ should just be used where the 
--- type can be automatically infered and we don't need an initial value
-auto = undefined
-
--- | @new@ constructs a new reference object with the value specified
-new :: a -> MIO r (V Var r a)
-new a = do
-  r <- MIO $ liftIO $ newIORef a
-  return $ R r
-
-infixr 0 =:
-
-
-class Assignable val where 
-  -- | @var '=:' value@ simply rewrites whatever 
-  -- is in @var@ with whatever @value@ is.
-  (=:) :: V Var r a -> val r a -> MIO r ()
-  
-instance Assignable (V b) where  
-  (=:) (R ar) br = MIO $ do
-    b <- getMIO $ val br
-    liftIO $ writeIORef ar b
-    
-instance Assignable MIO where  
-  (=:) a br = do
-    b <- br
-    a =: Lit b
-
--- | @'for'(init, check, incr)@ acts like the usual imperative for loop
-for' :: (MIO r irr1, V b r Bool, MIO r irr2) -> MIO r () -> MIO r ()
-for' (init, check, incr) body = init >> for_r
-  where for_r = do
-          do_comp <- val check
-          when do_comp $ callCC $ \break_foo -> do
-                         callCC $ \continue_foo -> MIO $ do
-                           flip withReaderT (getMIO body) $ \inbod ->
-                             InLoop (break_foo ()) (continue_foo ()) (controlReturn inbod)
-                         incr
-                         for_r
-
--- | @'while'(check)@ acts like the usual imperative while
-while' :: V b r Bool -> MIO r () -> MIO r ()                         
-while' check = for'(return (), check, return () )
-
--- | @'if'(check) m@ only executes m if the check is true.
--- it is specifically value in it's argument.
-if' :: V b r Bool -> MIO r () -> MIO r ()
-if' b m = do
-  v <- val b
-  when v m
-
--- | @'modifyOp' f@ makes a modify operator out of a binary 
--- haskell function
-modifyOp :: (a->b->a) -> V Var r a -> V k r b -> MIO r ()
-modifyOp op (R ar) br = MIO $ do
-  b <- getMIO $ val br
-  liftIO $ modifyIORef ar (\v -> op v b)
-
--- | @'liftOp' f@ turns a pure function into one which
--- gets the values out of it's arguments
-liftOp foo a = C $ do
-  a' <- val a
-  return $ Lit $ foo a'
-
-liftOp2 foo a1 a2 = C $ do
-  a1' <- val a1
-  a2' <- val a2
-  return $ Lit $ foo a1' a2'
-
-liftOp3 foo v1 v2 v3 = C $ do
-  v1' <- val v1
-  v2' <- val v2
-  v3' <- val v3
-  return $ Lit $ foo v1' v2' v3'
-  
-liftOp4 foo v1 v2 v3 v4 = C $ do
-  v1' <- val v1
-  v2' <- val v2
-  v3' <- val v3
-  v4' <- val v4
-  return $ Lit $ foo v1' v2' v3' v4'
-  
-liftOp5 foo v1 v2 v3 v4 v5 = C $ do
-    v1' <- val v1
-    v2' <- val v2
-    v3' <- val v3
-    v4' <- val v4
-    v5' <- val v5  
-    return $ Lit $ foo v1' v2' v3' v5' v4'  
− ImperativeHaskell/Control/Monad/Imperative/ImperativeOperators.hs
@@ -1,26 +0,0 @@-{-# LANGUAGE
- NoMonomorphismRestriction
- #-}
------------------------------------------------------------------------------
--- |
--- Module      :  Control.Monad.Imperative.ImperativeOperators
--- Maintainer  :  Matthew Mirman <mmirman@andrew.cmu.edu>
--- Stability   :  experimental
--- Portability :  NoMonomorphismRestriction
--- Some predefined operators for the imperative monad.
--- 
------------------------------------------------------------------------------
-module Control.Monad.Imperative.ImperativeOperators where
-
-import Control.Monad.Imperative.ImperativeMonad (modifyOp, liftOp2)
-
-
-(+=:) = modifyOp (+)
-(*=:) = modifyOp (*)
-(-=:) = modifyOp (-)
-(%=:) = modifyOp (mod)
-
-(<.) = liftOp2 (<)
-(>.) = liftOp2 (>)
-(+.) = liftOp2 (+)
-(*.) = liftOp2 (*)
− ImperativeHaskell/ImperativeHaskell.cabal
@@ -1,40 +0,0 @@-Name:                ImperativeHaskell-Version:             0.2.0.0-Description:         A monad that uses GADTs and continuations-                     to replicate what it is like to program-                     in an imperative language like C or Java-                     with "return", "for", "break", "continue", -                     and mutable references.-Synopsis:	     A library for writing Imperative style haskell.--Homepage:            https://github.com/mmirman/ImperativeHaskell--License:             GPL-3--License-file:        LICENSE--Author:              Matthew Mirman--Maintainer:          Matthew Mirman <mmirman@andrew.cmu.edu>--Category:            Control--Build-type:          Simple--Cabal-version:       >=1.6--Source-repository head-  Type:     git-  Location: git://github.com/mmirman/ImperativeHaskell.git--Library-  -  Build-depends:       base >= 4.0 && < 5.0, -                       mtl > 2.0 && < 3.0-		       -  Exposed-modules:    Control.Monad.Imperative,-                      Control.Monad.Imperative.ImperativeMonad,-                      Control.Monad.Imperative.ImperativeOperators-  -  Extensions: GADTs, EmptyDataDecls, NoMonomorphismRestriction,  GeneralizedNewtypeDeriving,  MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, UndecidableInstances-    
− ImperativeHaskell/LICENSE
@@ -1,320 +0,0 @@-                    GNU GENERAL PUBLIC LICENSE-                       Version 3, 29 June 2007-- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>- Everyone is permitted to copy and distribute verbatim copies- of this license document, but changing it is not allowed.--                            Preamble--  The GNU General Public License is a free, copyleft license for-software and other kinds of works.--  The licenses for most software and other practical works are designed-to take away your freedom to share and change the works.  By contrast,-the GNU General Public License is intended to guarantee your freedom to-share and change all versions of a program--to make sure it remains free-software for all its users.  We, the Free Software Foundation, use the-GNU General Public License for most of our software; it applies also to-any other work released this way by its authors.  You can apply it to-your programs, too.--  When we speak of free software, we are referring to freedom, not-price.  Our General Public Licenses are designed to make sure that you-have the freedom to distribute copies of free software (and charge for-them if you wish), that you receive source code or can get it if you-want it, that you can change the software or use pieces of it in new-free programs, and that you know you can do these things.--  To protect your rights, we need to prevent others from denying you-these rights or asking you to surrender the rights.  Therefore, you have-certain responsibilities if you distribute copies of the software, or if-you modify it: responsibilities to respect the freedom of others.--  For example, if you distribute copies of such a program, whether-gratis or for a fee, you must pass on to the recipients the same-freedoms that you received.  You must make sure that they, too, receive-or can get the source code.  And you must show them these terms so they-know their rights.--  Developers that use the GNU GPL protect your rights with two steps:-(1) assert copyright on the software, and (2) offer you this License-giving you legal permission to copy, distribute and/or modify it.--  For the developers' and authors' protection, the GPL clearly explains-that there is no warranty for this free software.  For both users' and-authors' sake, the GPL requires that modified versions be marked as-changed, so that their problems will not be attributed erroneously to-authors of previous versions.--  Some devices are designed to deny users access to install or run-modified versions of the software inside them, although the manufacturer-can do so.  This is fundamentally incompatible with the aim of-protecting users' freedom to change the software.  The systematic-pattern of such abuse occurs in the area of products for individuals to-use, which is precisely where it is most unacceptable.  Therefore, we-have designed this version of the GPL to prohibit the practice for those-products.  If such problems arise substantially in other domains, we-stand ready to extend this provision to those domains in future versions-of the GPL, as needed to protect the freedom of users.--  Finally, every program is threatened constantly by software patents.-States should not allow patents to restrict development and use of-software on general-purpose computers, but in those that do, we wish to-avoid the special danger that patents applied to a free program could-make it effectively proprietary.  To prevent this, the GPL assures that-patents cannot be used to render the program non-free.--  The precise terms and conditions for copying, distribution and-modification follow.--                       TERMS AND CONDITIONS--  0. Definitions.--  "This License" refers to version 3 of the GNU General Public License.--  "Copyright" also means copyright-like laws that apply to other kinds of-works, such as semiconductor masks.--  "The Program" refers to any copyrightable work licensed under this-License.  Each licensee is addressed as "you".  "Licensees" and-"recipients" may be individuals or organizations.--  To "modify" a work means to copy from or adapt all or part of the work-in a fashion requiring copyright permission, other than the making of an-exact copy.  The resulting work is called a "modified version" of the-earlier work or a work "based on" the earlier work.--  A "covered work" means either the unmodified Program or a work based-on the Program.--  To "propagate" a work means to do anything with it that, without-permission, would make you directly or secondarily liable for-infringement under applicable copyright law, except executing it on a-computer or modifying a private copy.  Propagation includes copying,-distribution (with or without modification), making available to the-public, and in some countries other activities as well.--  To "convey" a work means any kind of propagation that enables other-parties to make or receive copies.  Mere interaction with a user through-a computer network, with no transfer of a copy, is not conveying.--  An interactive user interface displays "Appropriate Legal Notices"-to the extent that it includes a convenient and prominently visible-feature that (1) displays an appropriate copyright notice, and (2)-tells the user that there is no warranty for the work (except to the-extent that warranties are provided), that licensees may convey the-work under this License, and how to view a copy of this License.  If-the interface presents a list of user commands or options, such as a-menu, a prominent item in the list meets this criterion.--  1. Source Code.--  The "source code" for a work means the preferred form of the work-for making modifications to it.  "Object code" means any non-source-form of a work.--  A "Standard Interface" means an interface that either is an official-standard defined by a recognized standards body, or, in the case of-interfaces specified for a particular programming language, one that-is widely used among developers working in that language.--  The "System Libraries" of an executable work include anything, other-than the work as a whole, that (a) is included in the normal form of-packaging a Major Component, but which is not part of that Major-Component, and (b) serves only to enable use of the work with that-Major "Major Component", in this context, means a major essential component-(kernel, window system, and so on) of the specific operating system-(if any) on which the executable work r, it does not include the work's-System Libraries, or general-purpose tools or generally available free-programs which are used unmodified in performing those activities but-which are not part of the work.  For eose-subprograms and other parts of the work.--  The Corresponding Source need not include anything that users-can regenerate automatically from other parts of the  work.--  2. Basic Permissions.--  All rights gran unmodified Program.  The output from running a-covered work is covered by this--  You may make, run and propagate covered works that you do not-convey, without conditions so long as your license otherwise remainyou, or proively on your behalf, under your direction-and control, on terms that prohibit them from making any copies of-your copyrighted material outside their relationship with you.--  Conveying under any otherg obligations under article-11 of the WIPO copyright treaty adopted on 20 December 1996, or-similar laws prohibiting or restricting circumvention of such-measures.--  When you convey a covered work, you waive any k's-users, your or third parties' legal rights to forbidsly and-appropriately publish on each copy an appropriate copyright notice;-keep intact all notices stating that this License and any-non-permissive terms amay convey a work based on the Program, or the modifications to-produce it from the Program, in the form of source code under the-terms of section 4, provided that you also meet all of these conditions:--    a) T-    "keep intact all notices".--    c) You must license the entire work, as a whole, under this-    License to anyone who comes into possession of a copy.  This-    License will therefore apply, along with any ae work has interactive user interfaces, each must display-    Appropriate Legal Notices; however, if the Program has interactive-    interfaces that do not display Apered work with other separate and independent-regate" if the compilation and its resulting copyright are not-used to limit the access or legal rights of the c the other-parts of the aggregate.--  6. Conveying Non-Source Forms.--  You may convey a covered woricensware interchange.--    b) Convey the object code in, or embodied in, a physical product-    (including a physical distribution medium), accompanied by a-    written offer, valid for at least three years and ly used for software interchange, for a price no-    more than your reasonable cost of physically performing this-    conveying of source, or (2) access to copy the-    Correes of the object code with a copy of tection 6b.--    d) Convey the object code by offering access from a designated-    place (gratis or for a charge),quire recipients to copy the-    Corresponding Source along with the object code.  If the place toequival  available for as long as needed to satisfy these requirements.--    e) Convey the object code using peer-to-peer transmission, provided-    you inform other peers where the object code and Corresponding-her (1) a "consumer product", which means any-tangible personal property which is normally used for personal, family,-or household purposes, or (2) anything designed or sold for incorporation-into a dwelling.  Inway in which the particular user-ly significant mode of use of the product.--  "Installation Information" for a User Product means any methods,-procedures, authorization keys, or other information required to insbject code work under this section in, or with, or-specifically for use in, a User Product, and the conveying occurs as-part of a transaction in which the right of possession and use of the-User Product is transf ability to install-modified object code on the User Product (for example, the work has-been installed in ROM).--  The requirement to provide Installation Information does not include a-requirement to continue totwork or violates the rules and-protocols for communica available to the public in-source code form), and must require no special password or key for-unpacking, reading or copying.--  7. Additional Terms.--  "Addpart of the Program, that part may be used separately-under those permissions, but the entire Program remains governed by-this License without regard to the additional permissions.--  When you convey a copy of a  work,-for which you have or can give appropriate copyright permission.--  Notwithstanding any other provision of this License, for material you-add to a covered work, you may (if authorized by the copyright f thaterial or in the Apt from the original version; or--    d) Limiting the use for publicity purposes of names of licensors or-    authors of the material; or--    e) Declining to grant rights under trademark law fsumptions directly impose on-    those licensors and authors.--  All other non-permissive additional terms are considered "further-restrictions" within the meaning of section 10.  If the Program as you-received itmaterial governed by the terms-of that license document, provided that the further restriction does-not survive such relicensing or conveying.--  If you add terms to a covered work in accord with this section, yo-the above requirements apply either way.--  8. Termination.--  You may not propagate or rights under-this License (including any patent licenses granted under the third-paragraph of section 11).--  However, if y particular copyright holder is-reinstated permanently if the copyright holder notifies you of the-violation by some reasonable means, this is the first time you have-received notice of violation of this License en terminated and not permanently-reinstated, you do not qualify to receive new licenses for the same-material under section 10.--  9. Acceptance Not Required for Having Copies.--  You are not required to accepy agate or-modify any covered work.  These actions infringe copyright if you do-not accept this License.  Therefore, by ecipients.--  Each time you convey a covered work, the recipient automatically-receives a licey transaction, each party to that-transaction who receives a copy of the work also receives whatever-licenses to the work the party's predecessor in interest had or could-give under the previous paragraph, plus a ot impose a license fee, royalty, or other charge for exercise of-rights granted under this License, and you may not initiate litigation-(including a cross-claim or counterclaim in a lawsuit) allling, offering fd the contributor's "contributor version".--  A contributor's "essential patent claims" are all patent claims-owned oLicense, of making, using, or selling its contributor version,-but do not include claims that wimport and otherwise run, modify and-propagate the contents of its contributor version.--  In the following three paragraphs, a "patent license" is any express-agreement or commitment, however denominated, not toing on a patent license,-and the Corresponding Source of the work is not available for anyone-to copy, free of charge and under the terms of this1) cause the Corresponding Source to be so-available, or (2) arrangse to downstream recipients.  "Knowingly relying" means you have-actual kble patents in that-country that you have reason to believe are valid.--  If, pursuant to or in connection with a single transaction or-arratent license is "discriminatory" if it does not include within-the scope of its coverage, prohibits the exercise of, or is-conditioned on the non-exercise of one or more of the rights that are-specifically grantrty grants, to any of the-parties who would receive the covered work from you, a discriminatory-patent license (a) in connection with copies of the c specific products or compilations that-contain the covered workse orions of this License, they do not-excuse you from the conditions of this License.  If you cannot convey a-covered work so as to satisfy simultaneously your obligations under this-License and any other pertinom conveying the Program.--  13. Use with the GNU Affero General Public License.--  Notwithstanding any other provision of this License, you have-permission to link or combine any covered work with a work licensening interaction through a network will apply to the-combination as such.--  14. Revised Versions of this License.--  The Free Software Foundation may pubns will-be similar in spirit to the present version, but m License "or any later version" ap the-GNU General Public License, you may choose any version ever published-by the Free Software Foundation.--  If the Program specifies that a proxy can decide which future-versis a result of your choosing to follow a-later version.--  15. Disclaimer of Warranty.--  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY-APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING TOGRAM-IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.--  16. Limitation of Liability.--  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGITED TO LOSS OF-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN A7. ute waiver of all civil liability in connection with the-Program, unless a warranty or assumption of liability accompanies a-copy of the Program in return for a Your New Programs
− ImperativeHaskell/Main.hs
@@ -1,73 +0,0 @@-{-# LANGUAGE
- GADTs
- #-}
-
------------------------------------------------------------------------------
--- |
--- Module      :  Main
--- Author      :  Matthew Mirman ( mmirman@andrew.cmu.edu )
--- Stability   :  experimental
--- Portability :  portable
--- Description :  An example module for Control.Monad.Imperative
--- 
--- Copyright (C) 2012  Matthew Mirman
--- 
--- This program is free software: you can redistribute it and/or modify
--- it under the terms of the GNU General Public License as published by
--- the Free Software Foundation, either version 3 of the License, or
--- (at your option) any later version.
--- 
--- This program is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
--- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--- GNU General Public License for more details.
--- 
--- You should have received a copy of the GNU General Public License
--- along with this program.  If not, see <http://www.gnu.org/licenses/>
-
-module Main where
-
-import Control.Monad.Imperative
-
-swap(r1, r2) = function $ do
-{
-    z <- new auto;
-    z =: r1;
-    r1 =: r2;
-    r2 =: z;
-};
-
-imperativeId(r1) = function $ do
-{
-    return' r1;
-};
-
-factorial = function $ do
-{
-    a <- new 0;
-    n <- new 1;
-    for' ( a =: Lit 1 , a <. Lit 11 , a +=: Lit 1 ) $ do
-    {
-        n *=: a;
-        if' ( a <. Lit 7)
-            continue';
-        
-
-        
-        if' ( a >. Lit 5) 
-            break';
-
-        return' a;
-    };
-    
-    a =: imperativeId(a);
-    
-    swap( (&)n , (&)a);
-    
-    return' n;
-};
-
- 
-main = do
-  t <- runImperative factorial
-  putStrLn $ "Some Factorial: "++show (t :: Int)
− ImperativeHaskell/README
@@ -1,6 +0,0 @@-Just proof that Haskell' can be truly imperative, and even look like C.--For some background, look in http://kormacode.blogspot.com/2011/11/c-style-haskell_10.html--For an example usage, look in Main.hs.-
− ImperativeHaskell/Setup.hs
@@ -1,2 +0,0 @@-import Distribution.Simple-main = defaultMain
Main.hs view
@@ -9,7 +9,6 @@ -- Stability   :  experimental
 -- Portability :  portable
 -- Description :  An example module for Control.Monad.Imperative
--- License     :  GNU-3
 -- 
 -- Copyright (C) 2012  Matthew Mirman
 -- 
+ dist/build/Control/Monad/Imperative.hi view

binary file changed (absent → 2399 bytes)

+ dist/build/Control/Monad/Imperative.o view

binary file changed (absent → 408 bytes)

+ dist/build/Control/Monad/Imperative/ImperativeMonad.hi view

binary file changed (absent → 30028 bytes)

+ dist/build/Control/Monad/Imperative/ImperativeMonad.o view

binary file changed (absent → 52880 bytes)

+ dist/build/Control/Monad/Imperative/ImperativeOperators.hi view

binary file changed (absent → 6028 bytes)

+ dist/build/Control/Monad/Imperative/ImperativeOperators.o view

binary file changed (absent → 6944 bytes)

+ dist/build/HSImperativeHaskell-0.2.0.1.o view

binary file changed (absent → 48012 bytes)

+ dist/build/autogen/Paths_ImperativeHaskell.hs view
@@ -0,0 +1,29 @@+module Paths_ImperativeHaskell (+    version,+    getBinDir, getLibDir, getDataDir, getLibexecDir,+    getDataFileName+  ) where++import Data.Version (Version(..))+import System.Environment (getEnv)++version :: Version+version = Version {versionBranch = [0,2,0,1], versionTags = []}++bindir, libdir, datadir, libexecdir :: FilePath++bindir     = "/Users/matt/.cabal/bin"+libdir     = "/Users/matt/.cabal/lib/ImperativeHaskell-0.2.0.1/ghc-7.2.1"+datadir    = "/Users/matt/.cabal/share/ImperativeHaskell-0.2.0.1"+libexecdir = "/Users/matt/.cabal/libexec"++getBinDir, getLibDir, getDataDir, getLibexecDir :: IO FilePath+getBinDir = catch (getEnv "ImperativeHaskell_bindir") (\_ -> return bindir)+getLibDir = catch (getEnv "ImperativeHaskell_libdir") (\_ -> return libdir)+getDataDir = catch (getEnv "ImperativeHaskell_datadir") (\_ -> return datadir)+getLibexecDir = catch (getEnv "ImperativeHaskell_libexecdir") (\_ -> return libexecdir)++getDataFileName :: FilePath -> IO FilePath+getDataFileName name = do+  dir <- getDataDir+  return (dir ++ "/" ++ name)
+ dist/build/autogen/cabal_macros.h view
@@ -0,0 +1,16 @@+/* DO NOT EDIT: This file is automatically generated by Cabal */++/* package base-4.4.0.0 */+#define VERSION_base "4.4.0.0"+#define MIN_VERSION_base(major1,major2,minor) (\+  (major1) <  4 || \+  (major1) == 4 && (major2) <  4 || \+  (major1) == 4 && (major2) == 4 && (minor) <= 0)++/* package mtl-2.0.1.0 */+#define VERSION_mtl "2.0.1.0"+#define MIN_VERSION_mtl(major1,major2,minor) (\+  (major1) <  2 || \+  (major1) == 2 && (major2) <  0 || \+  (major1) == 2 && (major2) == 0 && (minor) <= 1)+
+ dist/build/libHSImperativeHaskell-0.2.0.1.a view

binary file changed (absent → 77904 bytes)

+ dist/package.conf.inplace view
@@ -0,0 +1,2 @@+[InstalledPackageInfo {installedPackageId = InstalledPackageId "ImperativeHaskell-0.2.0.1-inplace", sourcePackageId = PackageIdentifier {pkgName = PackageName "ImperativeHaskell", pkgVersion = Version {versionBranch = [0,2,0,1], versionTags = []}}, license = GPL (Just (Version {versionBranch = [3], versionTags = []})), copyright = "", maintainer = "Matthew Mirman <mmirman@andrew.cmu.edu>", author = "Matthew Mirman", stability = "", homepage = "https://github.com/mmirman/ImperativeHaskell", pkgUrl = "", synopsis = "", description = "A monad that uses GADTs and continuations\nto replicate what it is like to program\nin an imperative language like C or Java\nwith \"return\", \"for\", \"break\", \"continue\",\nand mutable references.", category = "Control", exposed = True, exposedModules = ["Control.Monad.Imperative","Control.Monad.Imperative.ImperativeMonad","Control.Monad.Imperative.ImperativeOperators"], hiddenModules = [], trusted = False, importDirs = ["/Users/matt/projects/ImperativeHaskell-0.2.0.1/dist/build"], libraryDirs = ["/Users/matt/projects/ImperativeHaskell-0.2.0.1/dist/build"], hsLibraries = ["HSImperativeHaskell-0.2.0.1"], extraLibraries = [], extraGHCiLibraries = [], includeDirs = [], includes = [], depends = [InstalledPackageId "base-4.4.0.0-1b1454fb31b066529d7c19c4618311fe",InstalledPackageId "mtl-2.0.1.0-6e89e350c68b095f05890eb0e3285090"], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = ["/Users/matt/projects/ImperativeHaskell-0.2.0.1/dist/doc/html/ImperativeHaskell/ImperativeHaskell.haddock"], haddockHTMLs = ["/Users/matt/projects/ImperativeHaskell-0.2.0.1/dist/doc/html/ImperativeHaskell"]}+]
+ dist/setup-config view
@@ -0,0 +1,2 @@+Saved package config for ImperativeHaskell-0.2.0.1 written by Cabal-1.10.1.0 using ghc-7.0+LocalBuildInfo {configFlags = ConfigFlags {configPrograms = [], configProgramPaths = [], configProgramArgs = [], configHcFlavor = Flag GHC, configHcPath = NoFlag, configHcPkg = NoFlag, configVanillaLib = Flag True, configProfLib = Flag False, configSharedLib = Flag False, configProfExe = Flag False, configConfigureArgs = [], configOptimization = Flag NormalOptimisation, configProgPrefix = Flag "", configProgSuffix = Flag "", configInstallDirs = InstallDirs {prefix = Flag "/Users/matt/.cabal", bindir = NoFlag, libdir = NoFlag, libsubdir = NoFlag, dynlibdir = NoFlag, libexecdir = NoFlag, progdir = NoFlag, includedir = NoFlag, datadir = NoFlag, datasubdir = NoFlag, docdir = NoFlag, mandir = NoFlag, htmldir = NoFlag, haddockdir = NoFlag}, configScratchDir = NoFlag, configExtraLibDirs = [], configExtraIncludeDirs = [], configDistPref = Flag "dist", configVerbosity = Flag Normal, configUserInstall = Flag True, configPackageDB = NoFlag, configGHCiLib = Flag True, configSplitObjs = Flag False, configStripExes = Flag True, configConstraints = [Dependency (PackageName "base") (ThisVersion (Version {versionBranch = [4,4,0,0], versionTags = []})),Dependency (PackageName "mtl") (ThisVersion (Version {versionBranch = [2,0,1,0], versionTags = []}))], configConfigurationsFlags = [], configTests = Flag False}, extraConfigArgs = [], installDirTemplates = InstallDirs {prefix = "/Users/matt/.cabal", bindir = "$prefix/bin", libdir = "$prefix/lib", libsubdir = "$pkgid/$compiler", dynlibdir = "$libdir", libexecdir = "$prefix/libexec", progdir = "$libdir/hugs/programs", includedir = "$libdir/$libsubdir/include", datadir = "$prefix/share", datasubdir = "$pkgid", docdir = "$datadir/doc/$pkgid", mandir = "$datadir/man", htmldir = "$docdir/html", haddockdir = "$htmldir"}, compiler = Compiler {compilerId = CompilerId GHC (Version {versionBranch = [7,2,1], versionTags = []}), compilerLanguages = [(Haskell98,"-XHaskell98"),(Haskell2010,"-XHaskell2010")], compilerExtensions = [(UnknownExtension "Haskell98","-XHaskell98"),(UnknownExtension "Haskell2010","-XHaskell2010"),(UnknownExtension "SafeImports","-XSafeImports"),(UnknownExtension "Trustworthy","-XTrustworthy"),(UnknownExtension "Safe","-XSafe"),(CPP,"-XCPP"),(UnknownExtension "NoCPP","-XNoCPP"),(PostfixOperators,"-XPostfixOperators"),(UnknownExtension "NoPostfixOperators","-XNoPostfixOperators"),(TupleSections,"-XTupleSections"),(UnknownExtension "NoTupleSections","-XNoTupleSections"),(PatternGuards,"-XPatternGuards"),(UnknownExtension "NoPatternGuards","-XNoPatternGuards"),(UnicodeSyntax,"-XUnicodeSyntax"),(UnknownExtension "NoUnicodeSyntax","-XNoUnicodeSyntax"),(MagicHash,"-XMagicHash"),(UnknownExtension "NoMagicHash","-XNoMagicHash"),(PolymorphicComponents,"-XPolymorphicComponents"),(UnknownExtension "NoPolymorphicComponents","-XNoPolymorphicComponents"),(ExistentialQuantification,"-XExistentialQuantification"),(UnknownExtension "NoExistentialQuantification","-XNoExistentialQuantification"),(KindSignatures,"-XKindSignatures"),(UnknownExtension "NoKindSignatures","-XNoKindSignatures"),(EmptyDataDecls,"-XEmptyDataDecls"),(UnknownExtension "NoEmptyDataDecls","-XNoEmptyDataDecls"),(ParallelListComp,"-XParallelListComp"),(UnknownExtension "NoParallelListComp","-XNoParallelListComp"),(TransformListComp,"-XTransformListComp"),(UnknownExtension "NoTransformListComp","-XNoTransformListComp"),(UnknownExtension "MonadComprehensions","-XMonadComprehensions"),(UnknownExtension "NoMonadComprehensions","-XNoMonadComprehensions"),(ForeignFunctionInterface,"-XForeignFunctionInterface"),(UnknownExtension "NoForeignFunctionInterface","-XNoForeignFunctionInterface"),(UnliftedFFITypes,"-XUnliftedFFITypes"),(UnknownExtension "NoUnliftedFFITypes","-XNoUnliftedFFITypes"),(UnknownExtension "InterruptibleFFI","-XInterruptibleFFI"),(UnknownExtension "NoInterruptibleFFI","-XNoInterruptibleFFI"),(GHCForeignImportPrim,"-XGHCForeignImportPrim"),(UnknownExtension "NoGHCForeignImportPrim","-XNoGHCForeignImportPrim"),(LiberalTypeSynonyms,"-XLiberalTypeSynonyms"),(UnknownExtension "NoLiberalTypeSynonyms","-XNoLiberalTypeSynonyms"),(Rank2Types,"-XRank2Types"),(UnknownExtension "NoRank2Types","-XNoRank2Types"),(RankNTypes,"-XRankNTypes"),(UnknownExtension "NoRankNTypes","-XNoRankNTypes"),(ImpredicativeTypes,"-XImpredicativeTypes"),(UnknownExtension "NoImpredicativeTypes","-XNoImpredicativeTypes"),(TypeOperators,"-XTypeOperators"),(UnknownExtension "NoTypeOperators","-XNoTypeOperators"),(RecursiveDo,"-XRecursiveDo"),(UnknownExtension "NoRecursiveDo","-XNoRecursiveDo"),(DoRec,"-XDoRec"),(UnknownExtension "NoDoRec","-XNoDoRec"),(Arrows,"-XArrows"),(UnknownExtension "NoArrows","-XNoArrows"),(UnknownExtension "ParallelArrays","-XParallelArrays"),(UnknownExtension "NoParallelArrays","-XNoParallelArrays"),(TemplateHaskell,"-XTemplateHaskell"),(UnknownExtension "NoTemplateHaskell","-XNoTemplateHaskell"),(QuasiQuotes,"-XQuasiQuotes"),(UnknownExtension "NoQuasiQuotes","-XNoQuasiQuotes"),(NoImplicitPrelude,"-XNoImplicitPrelude"),(NoImplicitPrelude,"-XNoImplicitPrelude"),(RecordWildCards,"-XRecordWildCards"),(UnknownExtension "NoRecordWildCards","-XNoRecordWildCards"),(NamedFieldPuns,"-XNamedFieldPuns"),(UnknownExtension "NoNamedFieldPuns","-XNoNamedFieldPuns"),(RecordPuns,"-XRecordPuns"),(UnknownExtension "NoRecordPuns","-XNoRecordPuns"),(DisambiguateRecordFields,"-XDisambiguateRecordFields"),(UnknownExtension "NoDisambiguateRecordFields","-XNoDisambiguateRecordFields"),(OverloadedStrings,"-XOverloadedStrings"),(UnknownExtension "NoOverloadedStrings","-XNoOverloadedStrings"),(GADTs,"-XGADTs"),(UnknownExtension "NoGADTs","-XNoGADTs"),(UnknownExtension "GADTSyntax","-XGADTSyntax"),(UnknownExtension "NoGADTSyntax","-XNoGADTSyntax"),(ViewPatterns,"-XViewPatterns"),(UnknownExtension "NoViewPatterns","-XNoViewPatterns"),(TypeFamilies,"-XTypeFamilies"),(UnknownExtension "NoTypeFamilies","-XNoTypeFamilies"),(BangPatterns,"-XBangPatterns"),(UnknownExtension "NoBangPatterns","-XNoBangPatterns"),(NoMonomorphismRestriction,"-XNoMonomorphismRestriction"),(NoMonomorphismRestriction,"-XNoMonomorphismRestriction"),(NPlusKPatterns,"-XNPlusKPatterns"),(UnknownExtension "NoNPlusKPatterns","-XNoNPlusKPatterns"),(DoAndIfThenElse,"-XDoAndIfThenElse"),(UnknownExtension "NoDoAndIfThenElse","-XNoDoAndIfThenElse"),(RebindableSyntax,"-XRebindableSyntax"),(UnknownExtension "NoRebindableSyntax","-XNoRebindableSyntax"),(NoMonoPatBinds,"-XNoMonoPatBinds"),(NoMonoPatBinds,"-XNoMonoPatBinds"),(ExplicitForAll,"-XExplicitForAll"),(UnknownExtension "NoExplicitForAll","-XNoExplicitForAll"),(UnknownExtension "AlternativeLayoutRule","-XAlternativeLayoutRule"),(UnknownExtension "NoAlternativeLayoutRule","-XNoAlternativeLayoutRule"),(UnknownExtension "AlternativeLayoutRuleTransitional","-XAlternativeLayoutRuleTransitional"),(UnknownExtension "NoAlternativeLayoutRuleTransitional","-XNoAlternativeLayoutRuleTransitional"),(DatatypeContexts,"-XDatatypeContexts"),(UnknownExtension "NoDatatypeContexts","-XNoDatatypeContexts"),(UnknownExtension "NondecreasingIndentation","-XNondecreasingIndentation"),(UnknownExtension "NoNondecreasingIndentation","-XNoNondecreasingIndentation"),(UnknownExtension "RelaxedLayout","-XRelaxedLayout"),(UnknownExtension "NoRelaxedLayout","-XNoRelaxedLayout"),(MonoLocalBinds,"-XMonoLocalBinds"),(UnknownExtension "NoMonoLocalBinds","-XNoMonoLocalBinds"),(RelaxedPolyRec,"-XRelaxedPolyRec"),(UnknownExtension "NoRelaxedPolyRec","-XNoRelaxedPolyRec"),(ExtendedDefaultRules,"-XExtendedDefaultRules"),(UnknownExtension "NoExtendedDefaultRules","-XNoExtendedDefaultRules"),(ImplicitParams,"-XImplicitParams"),(UnknownExtension "NoImplicitParams","-XNoImplicitParams"),(ScopedTypeVariables,"-XScopedTypeVariables"),(UnknownExtension "NoScopedTypeVariables","-XNoScopedTypeVariables"),(PatternSignatures,"-XPatternSignatures"),(UnknownExtension "NoPatternSignatures","-XNoPatternSignatures"),(UnboxedTuples,"-XUnboxedTuples"),(UnknownExtension "NoUnboxedTuples","-XNoUnboxedTuples"),(StandaloneDeriving,"-XStandaloneDeriving"),(UnknownExtension "NoStandaloneDeriving","-XNoStandaloneDeriving"),(DeriveDataTypeable,"-XDeriveDataTypeable"),(UnknownExtension "NoDeriveDataTypeable","-XNoDeriveDataTypeable"),(DeriveFunctor,"-XDeriveFunctor"),(UnknownExtension "NoDeriveFunctor","-XNoDeriveFunctor"),(DeriveTraversable,"-XDeriveTraversable"),(UnknownExtension "NoDeriveTraversable","-XNoDeriveTraversable"),(DeriveFoldable,"-XDeriveFoldable"),(UnknownExtension "NoDeriveFoldable","-XNoDeriveFoldable"),(UnknownExtension "DeriveGeneric","-XDeriveGeneric"),(UnknownExtension "NoDeriveGeneric","-XNoDeriveGeneric"),(UnknownExtension "DefaultSignatures","-XDefaultSignatures"),(UnknownExtension "NoDefaultSignatures","-XNoDefaultSignatures"),(TypeSynonymInstances,"-XTypeSynonymInstances"),(UnknownExtension "NoTypeSynonymInstances","-XNoTypeSynonymInstances"),(FlexibleContexts,"-XFlexibleContexts"),(UnknownExtension "NoFlexibleContexts","-XNoFlexibleContexts"),(FlexibleInstances,"-XFlexibleInstances"),(UnknownExtension "NoFlexibleInstances","-XNoFlexibleInstances"),(ConstrainedClassMethods,"-XConstrainedClassMethods"),(UnknownExtension "NoConstrainedClassMethods","-XNoConstrainedClassMethods"),(MultiParamTypeClasses,"-XMultiParamTypeClasses"),(UnknownExtension "NoMultiParamTypeClasses","-XNoMultiParamTypeClasses"),(FunctionalDependencies,"-XFunctionalDependencies"),(UnknownExtension "NoFunctionalDependencies","-XNoFunctionalDependencies"),(GeneralizedNewtypeDeriving,"-XGeneralizedNewtypeDeriving"),(UnknownExtension "NoGeneralizedNewtypeDeriving","-XNoGeneralizedNewtypeDeriving"),(OverlappingInstances,"-XOverlappingInstances"),(UnknownExtension "NoOverlappingInstances","-XNoOverlappingInstances"),(UndecidableInstances,"-XUndecidableInstances"),(UnknownExtension "NoUndecidableInstances","-XNoUndecidableInstances"),(IncoherentInstances,"-XIncoherentInstances"),(UnknownExtension "NoIncoherentInstances","-XNoIncoherentInstances"),(PackageImports,"-XPackageImports"),(UnknownExtension "NoPackageImports","-XNoPackageImports")]}, buildDir = "dist/build", scratchDir = "dist/scratch", libraryConfig = Just (ComponentLocalBuildInfo {componentPackageDeps = [(InstalledPackageId "base-4.4.0.0-1b1454fb31b066529d7c19c4618311fe",PackageIdentifier {pkgName = PackageName "base", pkgVersion = Version {versionBranch = [4,4,0,0], versionTags = []}}),(InstalledPackageId "mtl-2.0.1.0-6e89e350c68b095f05890eb0e3285090",PackageIdentifier {pkgName = PackageName "mtl", pkgVersion = Version {versionBranch = [2,0,1,0], versionTags = []}})]}), executableConfigs = [], testSuiteConfigs = [], installedPkgs = PackageIndex (fromList [(InstalledPackageId "base-4.4.0.0-1b1454fb31b066529d7c19c4618311fe",InstalledPackageInfo {installedPackageId = InstalledPackageId "base-4.4.0.0-1b1454fb31b066529d7c19c4618311fe", sourcePackageId = PackageIdentifier {pkgName = PackageName "base", pkgVersion = Version {versionBranch = [4,4,0,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "libraries@haskell.org", author = "", stability = "", homepage = "", pkgUrl = "", description = "This package contains the Prelude and its support libraries,\nand a large collection of useful libraries ranging from data\nstructures to parsing combinators and debugging utilities.", category = "", exposed = True, exposedModules = [ModuleName ["Foreign","Concurrent"],ModuleName ["GHC","Arr"],ModuleName ["GHC","Base"],ModuleName ["GHC","Classes"],ModuleName ["GHC","Conc"],ModuleName ["GHC","Conc","IO"],ModuleName ["GHC","Conc","Signal"],ModuleName ["GHC","Conc","Sync"],ModuleName ["GHC","ConsoleHandler"],ModuleName ["GHC","Constants"],ModuleName ["GHC","Desugar"],ModuleName ["GHC","Enum"],ModuleName ["GHC","Environment"],ModuleName ["GHC","Err"],ModuleName ["GHC","Exception"],ModuleName ["GHC","Exts"],ModuleName ["GHC","Fingerprint"],ModuleName ["GHC","Fingerprint","Type"],ModuleName ["GHC","Float"],ModuleName ["GHC","Float","ConversionUtils"],ModuleName ["GHC","Float","RealFracMethods"],ModuleName ["GHC","Foreign"],ModuleName ["GHC","ForeignPtr"],ModuleName ["GHC","Handle"],ModuleName ["GHC","IO"],ModuleName ["GHC","IO","Buffer"],ModuleName ["GHC","IO","BufferedIO"],ModuleName ["GHC","IO","Device"],ModuleName ["GHC","IO","Encoding"],ModuleName ["GHC","IO","Encoding","CodePage"],ModuleName ["GHC","IO","Encoding","Failure"],ModuleName ["GHC","IO","Encoding","Iconv"],ModuleName ["GHC","IO","Encoding","Latin1"],ModuleName ["GHC","IO","Encoding","Types"],ModuleName ["GHC","IO","Encoding","UTF16"],ModuleName ["GHC","IO","Encoding","UTF32"],ModuleName ["GHC","IO","Encoding","UTF8"],ModuleName ["GHC","IO","Exception"],ModuleName ["GHC","IO","FD"],ModuleName ["GHC","IO","Handle"],ModuleName ["GHC","IO","Handle","FD"],ModuleName ["GHC","IO","Handle","Internals"],ModuleName ["GHC","IO","Handle","Text"],ModuleName ["GHC","IO","Handle","Types"],ModuleName ["GHC","IO","IOMode"],ModuleName ["GHC","IOArray"],ModuleName ["GHC","IOBase"],ModuleName ["GHC","IORef"],ModuleName ["GHC","Int"],ModuleName ["GHC","List"],ModuleName ["GHC","MVar"],ModuleName ["GHC","Num"],ModuleName ["GHC","PArr"],ModuleName ["GHC","Pack"],ModuleName ["GHC","Ptr"],ModuleName ["GHC","Read"],ModuleName ["GHC","Real"],ModuleName ["GHC","ST"],ModuleName ["GHC","Show"],ModuleName ["GHC","Stable"],ModuleName ["GHC","Storable"],ModuleName ["GHC","STRef"],ModuleName ["GHC","TopHandler"],ModuleName ["GHC","Unicode"],ModuleName ["GHC","Weak"],ModuleName ["GHC","Word"],ModuleName ["System","Timeout"],ModuleName ["GHC","Event"],ModuleName ["Control","Applicative"],ModuleName ["Control","Arrow"],ModuleName ["Control","Category"],ModuleName ["Control","Concurrent"],ModuleName ["Control","Concurrent","Chan"],ModuleName ["Control","Concurrent","MVar"],ModuleName ["Control","Concurrent","QSem"],ModuleName ["Control","Concurrent","QSemN"],ModuleName ["Control","Concurrent","SampleVar"],ModuleName ["Control","Exception"],ModuleName ["Control","Exception","Base"],ModuleName ["Control","OldException"],ModuleName ["Control","Monad"],ModuleName ["Control","Monad","Fix"],ModuleName ["Control","Monad","Instances"],ModuleName ["Control","Monad","ST"],ModuleName ["Control","Monad","ST","Safe"],ModuleName ["Control","Monad","ST","Unsafe"],ModuleName ["Control","Monad","ST","Lazy"],ModuleName ["Control","Monad","ST","Lazy","Safe"],ModuleName ["Control","Monad","ST","Lazy","Unsafe"],ModuleName ["Control","Monad","ST","Strict"],ModuleName ["Control","Monad","Group"],ModuleName ["Control","Monad","Zip"],ModuleName ["Data","Bits"],ModuleName ["Data","Bool"],ModuleName ["Data","Char"],ModuleName ["Data","Complex"],ModuleName ["Data","Dynamic"],ModuleName ["Data","Either"],ModuleName ["Data","Eq"],ModuleName ["Data","Data"],ModuleName ["Data","Fixed"],ModuleName ["Data","Foldable"],ModuleName ["Data","Function"],ModuleName ["Data","Functor"],ModuleName ["Data","HashTable"],ModuleName ["Data","IORef"],ModuleName ["Data","Int"],ModuleName ["Data","Ix"],ModuleName ["Data","List"],ModuleName ["Data","Maybe"],ModuleName ["Data","Monoid"],ModuleName ["Data","Ord"],ModuleName ["Data","Ratio"],ModuleName ["Data","STRef"],ModuleName ["Data","STRef","Lazy"],ModuleName ["Data","STRef","Strict"],ModuleName ["Data","String"],ModuleName ["Data","Traversable"],ModuleName ["Data","Tuple"],ModuleName ["Data","Typeable"],ModuleName ["Data","Typeable","Internal"],ModuleName ["Data","Unique"],ModuleName ["Data","Version"],ModuleName ["Data","Word"],ModuleName ["Debug","Trace"],ModuleName ["Foreign"],ModuleName ["Foreign","C"],ModuleName ["Foreign","C","Error"],ModuleName ["Foreign","C","String"],ModuleName ["Foreign","C","Types"],ModuleName ["Foreign","ForeignPtr"],ModuleName ["Foreign","ForeignPtr","Safe"],ModuleName ["Foreign","ForeignPtr","Unsafe"],ModuleName ["Foreign","Marshal"],ModuleName ["Foreign","Marshal","Alloc"],ModuleName ["Foreign","Marshal","Array"],ModuleName ["Foreign","Marshal","Error"],ModuleName ["Foreign","Marshal","Pool"],ModuleName ["Foreign","Marshal","Safe"],ModuleName ["Foreign","Marshal","Utils"],ModuleName ["Foreign","Marshal","Unsafe"],ModuleName ["Foreign","Ptr"],ModuleName ["Foreign","Safe"],ModuleName ["Foreign","StablePtr"],ModuleName ["Foreign","Storable"],ModuleName ["Numeric"],ModuleName ["Prelude"],ModuleName ["System","Console","GetOpt"],ModuleName ["System","CPUTime"],ModuleName ["System","Environment"],ModuleName ["System","Exit"],ModuleName ["System","IO"],ModuleName ["System","IO","Error"],ModuleName ["System","IO","Unsafe"],ModuleName ["System","Info"],ModuleName ["System","Mem"],ModuleName ["System","Mem","StableName"],ModuleName ["System","Mem","Weak"],ModuleName ["System","Posix","Internals"],ModuleName ["System","Posix","Types"],ModuleName ["Text","ParserCombinators","ReadP"],ModuleName ["Text","ParserCombinators","ReadPrec"],ModuleName ["Text","Printf"],ModuleName ["Text","Read"],ModuleName ["Text","Read","Lex"],ModuleName ["Text","Show"],ModuleName ["Text","Show","Functions"],ModuleName ["Unsafe","Coerce"]], hiddenModules = [ModuleName ["GHC","Event","Array"],ModuleName ["GHC","Event","Clock"],ModuleName ["GHC","Event","Control"],ModuleName ["GHC","Event","EPoll"],ModuleName ["GHC","Event","IntMap"],ModuleName ["GHC","Event","Internal"],ModuleName ["GHC","Event","KQueue"],ModuleName ["GHC","Event","Manager"],ModuleName ["GHC","Event","PSQ"],ModuleName ["GHC","Event","Poll"],ModuleName ["GHC","Event","Thread"],ModuleName ["GHC","Event","Unique"],ModuleName ["Control","Monad","ST","Imp"],ModuleName ["Control","Monad","ST","Lazy","Imp"],ModuleName ["Foreign","ForeignPtr","Imp"]], importDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/base-4.4.0.0"], libraryDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/base-4.4.0.0"], hsLibraries = ["HSbase-4.4.0.0"], extraLibraries = ["iconv"], extraGHCiLibraries = [], includeDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/base-4.4.0.0/include"], includes = ["HsBase.h"], depends = [InstalledPackageId "ghc-prim-0.2.0.0-d69712b976d60a144025da3be496aae7",InstalledPackageId "integer-gmp-0.3.0.0-e308d7d625d556565df0c2b4a56d9d05",InstalledPackageId "builtin_rts"], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/base-4.4.0.0/base.haddock"], haddockHTMLs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/base-4.4.0.0"]}),(InstalledPackageId "builtin_ffi",InstalledPackageInfo {installedPackageId = InstalledPackageId "builtin_ffi", sourcePackageId = PackageIdentifier {pkgName = PackageName "ffi", pkgVersion = Version {versionBranch = [1,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "glasgow-haskell-users@haskell.org", author = "", stability = "", homepage = "", pkgUrl = "", description = "", category = "", exposed = True, exposedModules = [], hiddenModules = [], importDirs = [], libraryDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1"], hsLibraries = ["HSffi"], extraLibraries = [], extraGHCiLibraries = [], includeDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/include"], includes = [], depends = [], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = [], haddockHTMLs = []}),(InstalledPackageId "builtin_rts",InstalledPackageInfo {installedPackageId = InstalledPackageId "builtin_rts", sourcePackageId = PackageIdentifier {pkgName = PackageName "rts", pkgVersion = Version {versionBranch = [1,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "glasgow-haskell-users@haskell.org", author = "", stability = "", homepage = "", pkgUrl = "", description = "", category = "", exposed = True, exposedModules = [], hiddenModules = [], importDirs = [], libraryDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1"], hsLibraries = ["HSrts"], extraLibraries = ["m","dl"], extraGHCiLibraries = [], includeDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/include"], includes = ["Stg.h"], depends = [InstalledPackageId "builtin_ffi"], hugsOptions = [], ccOptions = [], ldOptions = ["-u","_ghczmprim_GHCziTypes_Izh_static_info","-u","_ghczmprim_GHCziTypes_Czh_static_info","-u","_ghczmprim_GHCziTypes_Fzh_static_info","-u","_ghczmprim_GHCziTypes_Dzh_static_info","-u","_base_GHCziPtr_Ptr_static_info","-u","_base_GHCziWord_Wzh_static_info","-u","_base_GHCziInt_I8zh_static_info","-u","_base_GHCziInt_I16zh_static_info","-u","_base_GHCziInt_I32zh_static_info","-u","_base_GHCziInt_I64zh_static_info","-u","_base_GHCziWord_W8zh_static_info","-u","_base_GHCziWord_W16zh_static_info","-u","_base_GHCziWord_W32zh_static_info","-u","_base_GHCziWord_W64zh_static_info","-u","_base_GHCziStable_StablePtr_static_info","-u","_ghczmprim_GHCziTypes_Izh_con_info","-u","_ghczmprim_GHCziTypes_Czh_con_info","-u","_ghczmprim_GHCziTypes_Fzh_con_info","-u","_ghczmprim_GHCziTypes_Dzh_con_info","-u","_base_GHCziPtr_Ptr_con_info","-u","_base_GHCziPtr_FunPtr_con_info","-u","_base_GHCziStable_StablePtr_con_info","-u","_ghczmprim_GHCziTypes_False_closure","-u","_ghczmprim_GHCziTypes_True_closure","-u","_base_GHCziPack_unpackCString_closure","-u","_base_GHCziIOziException_stackOverflow_closure","-u","_base_GHCziIOziException_heapOverflow_closure","-u","_base_ControlziExceptionziBase_nonTermination_closure","-u","_base_GHCziIOziException_blockedIndefinitelyOnMVar_closure","-u","_base_GHCziIOziException_blockedIndefinitelyOnSTM_closure","-u","_base_ControlziExceptionziBase_nestedAtomically_closure","-u","_base_GHCziWeak_runFinalizzerBatch_closure","-u","_base_GHCziTopHandler_runIO_closure","-u","_base_GHCziTopHandler_runNonIO_closure","-u","_base_GHCziConcziIO_ensureIOManagerIsRunning_closure","-u","_base_GHCziConcziSync_runSparks_closure","-u","_base_GHCziConcziSignal_runHandlers_closure","-Wl,-search_paths_first","-read_only_relocs","warning"], frameworkDirs = [], frameworks = [], haddockInterfaces = [], haddockHTMLs = []}),(InstalledPackageId "ghc-prim-0.2.0.0-d69712b976d60a144025da3be496aae7",InstalledPackageInfo {installedPackageId = InstalledPackageId "ghc-prim-0.2.0.0-d69712b976d60a144025da3be496aae7", sourcePackageId = PackageIdentifier {pkgName = PackageName "ghc-prim", pkgVersion = Version {versionBranch = [0,2,0,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "libraries@haskell.org", author = "", stability = "", homepage = "", pkgUrl = "", description = "GHC primitives.", category = "", exposed = True, exposedModules = [ModuleName ["GHC","Prim"],ModuleName ["GHC","Debug"],ModuleName ["GHC","Generics"],ModuleName ["GHC","Magic"],ModuleName ["GHC","Ordering"],ModuleName ["GHC","PrimopWrappers"],ModuleName ["GHC","IntWord32"],ModuleName ["GHC","IntWord64"],ModuleName ["GHC","Tuple"],ModuleName ["GHC","Types"],ModuleName ["GHC","Unit"],ModuleName ["GHC","CString"]], hiddenModules = [], importDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/ghc-prim-0.2.0.0"], libraryDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/ghc-prim-0.2.0.0"], hsLibraries = ["HSghc-prim-0.2.0.0"], extraLibraries = [], extraGHCiLibraries = [], includeDirs = [], includes = [], depends = [InstalledPackageId "builtin_rts"], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/ghc-prim-0.2.0.0/ghc-prim.haddock"], haddockHTMLs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/ghc-prim-0.2.0.0"]}),(InstalledPackageId "integer-gmp-0.3.0.0-e308d7d625d556565df0c2b4a56d9d05",InstalledPackageInfo {installedPackageId = InstalledPackageId "integer-gmp-0.3.0.0-e308d7d625d556565df0c2b4a56d9d05", sourcePackageId = PackageIdentifier {pkgName = PackageName "integer-gmp", pkgVersion = Version {versionBranch = [0,3,0,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "libraries@haskell.org", author = "", stability = "", homepage = "", pkgUrl = "", description = "This package contains an Integer library based on GMP.", category = "", exposed = True, exposedModules = [ModuleName ["GHC","Integer"],ModuleName ["GHC","Integer","GMP","Internals"],ModuleName ["GHC","Integer","Logarithms"],ModuleName ["GHC","Integer","Logarithms","Internals"]], hiddenModules = [ModuleName ["GHC","Integer","Type"]], importDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/integer-gmp-0.3.0.0"], libraryDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/integer-gmp-0.3.0.0"], hsLibraries = ["HSinteger-gmp-0.3.0.0"], extraLibraries = [], extraGHCiLibraries = [], includeDirs = [], includes = [], depends = [InstalledPackageId "ghc-prim-0.2.0.0-d69712b976d60a144025da3be496aae7"], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/integer-gmp-0.3.0.0/integer-gmp.haddock"], haddockHTMLs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/integer-gmp-0.3.0.0"]}),(InstalledPackageId "mtl-2.0.1.0-6e89e350c68b095f05890eb0e3285090",InstalledPackageInfo {installedPackageId = InstalledPackageId "mtl-2.0.1.0-6e89e350c68b095f05890eb0e3285090", sourcePackageId = PackageIdentifier {pkgName = PackageName "mtl", pkgVersion = Version {versionBranch = [2,0,1,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "libraries@haskell.org", author = "Andy Gill", stability = "", homepage = "", pkgUrl = "", description = "Monad classes using functional dependencies, with instances\nfor various monad transformers, inspired by the paper\n/Functional Programming with Overloading and Higher-Order Polymorphism/,\nby Mark P Jones, in /Advanced School of Functional Programming/, 1995\n(<http://web.cecs.pdx.edu/~mpj/pubs/springschool.html>).", category = "Control", exposed = True, exposedModules = [ModuleName ["Control","Monad","Cont"],ModuleName ["Control","Monad","Cont","Class"],ModuleName ["Control","Monad","Error"],ModuleName ["Control","Monad","Error","Class"],ModuleName ["Control","Monad","Identity"],ModuleName ["Control","Monad","List"],ModuleName ["Control","Monad","RWS"],ModuleName ["Control","Monad","RWS","Class"],ModuleName ["Control","Monad","RWS","Lazy"],ModuleName ["Control","Monad","RWS","Strict"],ModuleName ["Control","Monad","Reader"],ModuleName ["Control","Monad","Reader","Class"],ModuleName ["Control","Monad","State"],ModuleName ["Control","Monad","State","Class"],ModuleName ["Control","Monad","State","Lazy"],ModuleName ["Control","Monad","State","Strict"],ModuleName ["Control","Monad","Trans"],ModuleName ["Control","Monad","Writer"],ModuleName ["Control","Monad","Writer","Class"],ModuleName ["Control","Monad","Writer","Lazy"],ModuleName ["Control","Monad","Writer","Strict"]], hiddenModules = [], importDirs = ["/Users/matt/.cabal/lib/mtl-2.0.1.0/ghc-7.2.1"], libraryDirs = ["/Users/matt/.cabal/lib/mtl-2.0.1.0/ghc-7.2.1"], hsLibraries = ["HSmtl-2.0.1.0"], extraLibraries = [], extraGHCiLibraries = [], includeDirs = [], includes = [], depends = [InstalledPackageId "base-4.4.0.0-1b1454fb31b066529d7c19c4618311fe",InstalledPackageId "transformers-0.2.2.0-c2ad790294a3a824ec99c0e828257dc3"], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = ["/Users/matt/.cabal/share/doc/mtl-2.0.1.0/html/mtl.haddock"], haddockHTMLs = ["/Users/matt/.cabal/share/doc/mtl-2.0.1.0/html"]}),(InstalledPackageId "transformers-0.2.2.0-c2ad790294a3a824ec99c0e828257dc3",InstalledPackageInfo {installedPackageId = InstalledPackageId "transformers-0.2.2.0-c2ad790294a3a824ec99c0e828257dc3", sourcePackageId = PackageIdentifier {pkgName = PackageName "transformers", pkgVersion = Version {versionBranch = [0,2,2,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "Ross Paterson <ross@soi.city.ac.uk>", author = "Andy Gill, Ross Paterson", stability = "", homepage = "", pkgUrl = "", description = "Haskell 98 part of a monad transformer library, inspired by the paper\n\\\"Functional Programming with Overloading and Higher-Order Polymorphism\\\",\nby Mark P Jones, in /Advanced School of Functional Programming/, 1995\n(<http://web.cecs.pdx.edu/~mpj/pubs/springschool.html>).\n\nThis part contains the monad transformer class, the concrete monad\ntransformers, operations and liftings.  It can be used on its own\nin Haskell 98 code, or with the monad classes in the @monads-fd@ or\n@monads-tf@ packages, which automatically lift operations introduced\nby monad transformers through other transformers.", category = "Control", exposed = True, exposedModules = [ModuleName ["Control","Monad","IO","Class"],ModuleName ["Control","Monad","Trans","Class"],ModuleName ["Control","Monad","Trans","Cont"],ModuleName ["Control","Monad","Trans","Error"],ModuleName ["Control","Monad","Trans","Identity"],ModuleName ["Control","Monad","Trans","List"],ModuleName ["Control","Monad","Trans","Maybe"],ModuleName ["Control","Monad","Trans","Reader"],ModuleName ["Control","Monad","Trans","RWS"],ModuleName ["Control","Monad","Trans","RWS","Lazy"],ModuleName ["Control","Monad","Trans","RWS","Strict"],ModuleName ["Control","Monad","Trans","State"],ModuleName ["Control","Monad","Trans","State","Lazy"],ModuleName ["Control","Monad","Trans","State","Strict"],ModuleName ["Control","Monad","Trans","Writer"],ModuleName ["Control","Monad","Trans","Writer","Lazy"],ModuleName ["Control","Monad","Trans","Writer","Strict"],ModuleName ["Data","Functor","Compose"],ModuleName ["Data","Functor","Constant"],ModuleName ["Data","Functor","Identity"],ModuleName ["Data","Functor","Product"]], hiddenModules = [], importDirs = ["/Users/matt/.cabal/lib/transformers-0.2.2.0/ghc-7.2.1"], libraryDirs = ["/Users/matt/.cabal/lib/transformers-0.2.2.0/ghc-7.2.1"], hsLibraries = ["HStransformers-0.2.2.0"], extraLibraries = [], extraGHCiLibraries = [], includeDirs = [], includes = [], depends = [InstalledPackageId "base-4.4.0.0-1b1454fb31b066529d7c19c4618311fe"], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = ["/Users/matt/.cabal/share/doc/transformers-0.2.2.0/html/transformers.haddock"], haddockHTMLs = ["/Users/matt/.cabal/share/doc/transformers-0.2.2.0/html"]})]) (fromList [(PackageName "base",fromList [(Version {versionBranch = [4,4,0,0], versionTags = []},[InstalledPackageInfo {installedPackageId = InstalledPackageId "base-4.4.0.0-1b1454fb31b066529d7c19c4618311fe", sourcePackageId = PackageIdentifier {pkgName = PackageName "base", pkgVersion = Version {versionBranch = [4,4,0,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "libraries@haskell.org", author = "", stability = "", homepage = "", pkgUrl = "", description = "This package contains the Prelude and its support libraries,\nand a large collection of useful libraries ranging from data\nstructures to parsing combinators and debugging utilities.", category = "", exposed = True, exposedModules = [ModuleName ["Foreign","Concurrent"],ModuleName ["GHC","Arr"],ModuleName ["GHC","Base"],ModuleName ["GHC","Classes"],ModuleName ["GHC","Conc"],ModuleName ["GHC","Conc","IO"],ModuleName ["GHC","Conc","Signal"],ModuleName ["GHC","Conc","Sync"],ModuleName ["GHC","ConsoleHandler"],ModuleName ["GHC","Constants"],ModuleName ["GHC","Desugar"],ModuleName ["GHC","Enum"],ModuleName ["GHC","Environment"],ModuleName ["GHC","Err"],ModuleName ["GHC","Exception"],ModuleName ["GHC","Exts"],ModuleName ["GHC","Fingerprint"],ModuleName ["GHC","Fingerprint","Type"],ModuleName ["GHC","Float"],ModuleName ["GHC","Float","ConversionUtils"],ModuleName ["GHC","Float","RealFracMethods"],ModuleName ["GHC","Foreign"],ModuleName ["GHC","ForeignPtr"],ModuleName ["GHC","Handle"],ModuleName ["GHC","IO"],ModuleName ["GHC","IO","Buffer"],ModuleName ["GHC","IO","BufferedIO"],ModuleName ["GHC","IO","Device"],ModuleName ["GHC","IO","Encoding"],ModuleName ["GHC","IO","Encoding","CodePage"],ModuleName ["GHC","IO","Encoding","Failure"],ModuleName ["GHC","IO","Encoding","Iconv"],ModuleName ["GHC","IO","Encoding","Latin1"],ModuleName ["GHC","IO","Encoding","Types"],ModuleName ["GHC","IO","Encoding","UTF16"],ModuleName ["GHC","IO","Encoding","UTF32"],ModuleName ["GHC","IO","Encoding","UTF8"],ModuleName ["GHC","IO","Exception"],ModuleName ["GHC","IO","FD"],ModuleName ["GHC","IO","Handle"],ModuleName ["GHC","IO","Handle","FD"],ModuleName ["GHC","IO","Handle","Internals"],ModuleName ["GHC","IO","Handle","Text"],ModuleName ["GHC","IO","Handle","Types"],ModuleName ["GHC","IO","IOMode"],ModuleName ["GHC","IOArray"],ModuleName ["GHC","IOBase"],ModuleName ["GHC","IORef"],ModuleName ["GHC","Int"],ModuleName ["GHC","List"],ModuleName ["GHC","MVar"],ModuleName ["GHC","Num"],ModuleName ["GHC","PArr"],ModuleName ["GHC","Pack"],ModuleName ["GHC","Ptr"],ModuleName ["GHC","Read"],ModuleName ["GHC","Real"],ModuleName ["GHC","ST"],ModuleName ["GHC","Show"],ModuleName ["GHC","Stable"],ModuleName ["GHC","Storable"],ModuleName ["GHC","STRef"],ModuleName ["GHC","TopHandler"],ModuleName ["GHC","Unicode"],ModuleName ["GHC","Weak"],ModuleName ["GHC","Word"],ModuleName ["System","Timeout"],ModuleName ["GHC","Event"],ModuleName ["Control","Applicative"],ModuleName ["Control","Arrow"],ModuleName ["Control","Category"],ModuleName ["Control","Concurrent"],ModuleName ["Control","Concurrent","Chan"],ModuleName ["Control","Concurrent","MVar"],ModuleName ["Control","Concurrent","QSem"],ModuleName ["Control","Concurrent","QSemN"],ModuleName ["Control","Concurrent","SampleVar"],ModuleName ["Control","Exception"],ModuleName ["Control","Exception","Base"],ModuleName ["Control","OldException"],ModuleName ["Control","Monad"],ModuleName ["Control","Monad","Fix"],ModuleName ["Control","Monad","Instances"],ModuleName ["Control","Monad","ST"],ModuleName ["Control","Monad","ST","Safe"],ModuleName ["Control","Monad","ST","Unsafe"],ModuleName ["Control","Monad","ST","Lazy"],ModuleName ["Control","Monad","ST","Lazy","Safe"],ModuleName ["Control","Monad","ST","Lazy","Unsafe"],ModuleName ["Control","Monad","ST","Strict"],ModuleName ["Control","Monad","Group"],ModuleName ["Control","Monad","Zip"],ModuleName ["Data","Bits"],ModuleName ["Data","Bool"],ModuleName ["Data","Char"],ModuleName ["Data","Complex"],ModuleName ["Data","Dynamic"],ModuleName ["Data","Either"],ModuleName ["Data","Eq"],ModuleName ["Data","Data"],ModuleName ["Data","Fixed"],ModuleName ["Data","Foldable"],ModuleName ["Data","Function"],ModuleName ["Data","Functor"],ModuleName ["Data","HashTable"],ModuleName ["Data","IORef"],ModuleName ["Data","Int"],ModuleName ["Data","Ix"],ModuleName ["Data","List"],ModuleName ["Data","Maybe"],ModuleName ["Data","Monoid"],ModuleName ["Data","Ord"],ModuleName ["Data","Ratio"],ModuleName ["Data","STRef"],ModuleName ["Data","STRef","Lazy"],ModuleName ["Data","STRef","Strict"],ModuleName ["Data","String"],ModuleName ["Data","Traversable"],ModuleName ["Data","Tuple"],ModuleName ["Data","Typeable"],ModuleName ["Data","Typeable","Internal"],ModuleName ["Data","Unique"],ModuleName ["Data","Version"],ModuleName ["Data","Word"],ModuleName ["Debug","Trace"],ModuleName ["Foreign"],ModuleName ["Foreign","C"],ModuleName ["Foreign","C","Error"],ModuleName ["Foreign","C","String"],ModuleName ["Foreign","C","Types"],ModuleName ["Foreign","ForeignPtr"],ModuleName ["Foreign","ForeignPtr","Safe"],ModuleName ["Foreign","ForeignPtr","Unsafe"],ModuleName ["Foreign","Marshal"],ModuleName ["Foreign","Marshal","Alloc"],ModuleName ["Foreign","Marshal","Array"],ModuleName ["Foreign","Marshal","Error"],ModuleName ["Foreign","Marshal","Pool"],ModuleName ["Foreign","Marshal","Safe"],ModuleName ["Foreign","Marshal","Utils"],ModuleName ["Foreign","Marshal","Unsafe"],ModuleName ["Foreign","Ptr"],ModuleName ["Foreign","Safe"],ModuleName ["Foreign","StablePtr"],ModuleName ["Foreign","Storable"],ModuleName ["Numeric"],ModuleName ["Prelude"],ModuleName ["System","Console","GetOpt"],ModuleName ["System","CPUTime"],ModuleName ["System","Environment"],ModuleName ["System","Exit"],ModuleName ["System","IO"],ModuleName ["System","IO","Error"],ModuleName ["System","IO","Unsafe"],ModuleName ["System","Info"],ModuleName ["System","Mem"],ModuleName ["System","Mem","StableName"],ModuleName ["System","Mem","Weak"],ModuleName ["System","Posix","Internals"],ModuleName ["System","Posix","Types"],ModuleName ["Text","ParserCombinators","ReadP"],ModuleName ["Text","ParserCombinators","ReadPrec"],ModuleName ["Text","Printf"],ModuleName ["Text","Read"],ModuleName ["Text","Read","Lex"],ModuleName ["Text","Show"],ModuleName ["Text","Show","Functions"],ModuleName ["Unsafe","Coerce"]], hiddenModules = [ModuleName ["GHC","Event","Array"],ModuleName ["GHC","Event","Clock"],ModuleName ["GHC","Event","Control"],ModuleName ["GHC","Event","EPoll"],ModuleName ["GHC","Event","IntMap"],ModuleName ["GHC","Event","Internal"],ModuleName ["GHC","Event","KQueue"],ModuleName ["GHC","Event","Manager"],ModuleName ["GHC","Event","PSQ"],ModuleName ["GHC","Event","Poll"],ModuleName ["GHC","Event","Thread"],ModuleName ["GHC","Event","Unique"],ModuleName ["Control","Monad","ST","Imp"],ModuleName ["Control","Monad","ST","Lazy","Imp"],ModuleName ["Foreign","ForeignPtr","Imp"]], importDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/base-4.4.0.0"], libraryDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/base-4.4.0.0"], hsLibraries = ["HSbase-4.4.0.0"], extraLibraries = ["iconv"], extraGHCiLibraries = [], includeDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/base-4.4.0.0/include"], includes = ["HsBase.h"], depends = [InstalledPackageId "ghc-prim-0.2.0.0-d69712b976d60a144025da3be496aae7",InstalledPackageId "integer-gmp-0.3.0.0-e308d7d625d556565df0c2b4a56d9d05",InstalledPackageId "builtin_rts"], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/base-4.4.0.0/base.haddock"], haddockHTMLs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/base-4.4.0.0"]}])]),(PackageName "ffi",fromList [(Version {versionBranch = [1,0], versionTags = []},[InstalledPackageInfo {installedPackageId = InstalledPackageId "builtin_ffi", sourcePackageId = PackageIdentifier {pkgName = PackageName "ffi", pkgVersion = Version {versionBranch = [1,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "glasgow-haskell-users@haskell.org", author = "", stability = "", homepage = "", pkgUrl = "", description = "", category = "", exposed = True, exposedModules = [], hiddenModules = [], importDirs = [], libraryDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1"], hsLibraries = ["HSffi"], extraLibraries = [], extraGHCiLibraries = [], includeDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/include"], includes = [], depends = [], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = [], haddockHTMLs = []}])]),(PackageName "ghc-prim",fromList [(Version {versionBranch = [0,2,0,0], versionTags = []},[InstalledPackageInfo {installedPackageId = InstalledPackageId "ghc-prim-0.2.0.0-d69712b976d60a144025da3be496aae7", sourcePackageId = PackageIdentifier {pkgName = PackageName "ghc-prim", pkgVersion = Version {versionBranch = [0,2,0,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "libraries@haskell.org", author = "", stability = "", homepage = "", pkgUrl = "", description = "GHC primitives.", category = "", exposed = True, exposedModules = [ModuleName ["GHC","Prim"],ModuleName ["GHC","Debug"],ModuleName ["GHC","Generics"],ModuleName ["GHC","Magic"],ModuleName ["GHC","Ordering"],ModuleName ["GHC","PrimopWrappers"],ModuleName ["GHC","IntWord32"],ModuleName ["GHC","IntWord64"],ModuleName ["GHC","Tuple"],ModuleName ["GHC","Types"],ModuleName ["GHC","Unit"],ModuleName ["GHC","CString"]], hiddenModules = [], importDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/ghc-prim-0.2.0.0"], libraryDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/ghc-prim-0.2.0.0"], hsLibraries = ["HSghc-prim-0.2.0.0"], extraLibraries = [], extraGHCiLibraries = [], includeDirs = [], includes = [], depends = [InstalledPackageId "builtin_rts"], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/ghc-prim-0.2.0.0/ghc-prim.haddock"], haddockHTMLs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/ghc-prim-0.2.0.0"]}])]),(PackageName "integer-gmp",fromList [(Version {versionBranch = [0,3,0,0], versionTags = []},[InstalledPackageInfo {installedPackageId = InstalledPackageId "integer-gmp-0.3.0.0-e308d7d625d556565df0c2b4a56d9d05", sourcePackageId = PackageIdentifier {pkgName = PackageName "integer-gmp", pkgVersion = Version {versionBranch = [0,3,0,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "libraries@haskell.org", author = "", stability = "", homepage = "", pkgUrl = "", description = "This package contains an Integer library based on GMP.", category = "", exposed = True, exposedModules = [ModuleName ["GHC","Integer"],ModuleName ["GHC","Integer","GMP","Internals"],ModuleName ["GHC","Integer","Logarithms"],ModuleName ["GHC","Integer","Logarithms","Internals"]], hiddenModules = [ModuleName ["GHC","Integer","Type"]], importDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/integer-gmp-0.3.0.0"], libraryDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/integer-gmp-0.3.0.0"], hsLibraries = ["HSinteger-gmp-0.3.0.0"], extraLibraries = [], extraGHCiLibraries = [], includeDirs = [], includes = [], depends = [InstalledPackageId "ghc-prim-0.2.0.0-d69712b976d60a144025da3be496aae7"], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/integer-gmp-0.3.0.0/integer-gmp.haddock"], haddockHTMLs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/share/doc/ghc/html/libraries/integer-gmp-0.3.0.0"]}])]),(PackageName "mtl",fromList [(Version {versionBranch = [2,0,1,0], versionTags = []},[InstalledPackageInfo {installedPackageId = InstalledPackageId "mtl-2.0.1.0-6e89e350c68b095f05890eb0e3285090", sourcePackageId = PackageIdentifier {pkgName = PackageName "mtl", pkgVersion = Version {versionBranch = [2,0,1,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "libraries@haskell.org", author = "Andy Gill", stability = "", homepage = "", pkgUrl = "", description = "Monad classes using functional dependencies, with instances\nfor various monad transformers, inspired by the paper\n/Functional Programming with Overloading and Higher-Order Polymorphism/,\nby Mark P Jones, in /Advanced School of Functional Programming/, 1995\n(<http://web.cecs.pdx.edu/~mpj/pubs/springschool.html>).", category = "Control", exposed = True, exposedModules = [ModuleName ["Control","Monad","Cont"],ModuleName ["Control","Monad","Cont","Class"],ModuleName ["Control","Monad","Error"],ModuleName ["Control","Monad","Error","Class"],ModuleName ["Control","Monad","Identity"],ModuleName ["Control","Monad","List"],ModuleName ["Control","Monad","RWS"],ModuleName ["Control","Monad","RWS","Class"],ModuleName ["Control","Monad","RWS","Lazy"],ModuleName ["Control","Monad","RWS","Strict"],ModuleName ["Control","Monad","Reader"],ModuleName ["Control","Monad","Reader","Class"],ModuleName ["Control","Monad","State"],ModuleName ["Control","Monad","State","Class"],ModuleName ["Control","Monad","State","Lazy"],ModuleName ["Control","Monad","State","Strict"],ModuleName ["Control","Monad","Trans"],ModuleName ["Control","Monad","Writer"],ModuleName ["Control","Monad","Writer","Class"],ModuleName ["Control","Monad","Writer","Lazy"],ModuleName ["Control","Monad","Writer","Strict"]], hiddenModules = [], importDirs = ["/Users/matt/.cabal/lib/mtl-2.0.1.0/ghc-7.2.1"], libraryDirs = ["/Users/matt/.cabal/lib/mtl-2.0.1.0/ghc-7.2.1"], hsLibraries = ["HSmtl-2.0.1.0"], extraLibraries = [], extraGHCiLibraries = [], includeDirs = [], includes = [], depends = [InstalledPackageId "base-4.4.0.0-1b1454fb31b066529d7c19c4618311fe",InstalledPackageId "transformers-0.2.2.0-c2ad790294a3a824ec99c0e828257dc3"], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = ["/Users/matt/.cabal/share/doc/mtl-2.0.1.0/html/mtl.haddock"], haddockHTMLs = ["/Users/matt/.cabal/share/doc/mtl-2.0.1.0/html"]}])]),(PackageName "rts",fromList [(Version {versionBranch = [1,0], versionTags = []},[InstalledPackageInfo {installedPackageId = InstalledPackageId "builtin_rts", sourcePackageId = PackageIdentifier {pkgName = PackageName "rts", pkgVersion = Version {versionBranch = [1,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "glasgow-haskell-users@haskell.org", author = "", stability = "", homepage = "", pkgUrl = "", description = "", category = "", exposed = True, exposedModules = [], hiddenModules = [], importDirs = [], libraryDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1"], hsLibraries = ["HSrts"], extraLibraries = ["m","dl"], extraGHCiLibraries = [], includeDirs = ["/Library/Frameworks/GHC.framework/Versions/7.2.1-i386/usr/lib/ghc-7.2.1/include"], includes = ["Stg.h"], depends = [InstalledPackageId "builtin_ffi"], hugsOptions = [], ccOptions = [], ldOptions = ["-u","_ghczmprim_GHCziTypes_Izh_static_info","-u","_ghczmprim_GHCziTypes_Czh_static_info","-u","_ghczmprim_GHCziTypes_Fzh_static_info","-u","_ghczmprim_GHCziTypes_Dzh_static_info","-u","_base_GHCziPtr_Ptr_static_info","-u","_base_GHCziWord_Wzh_static_info","-u","_base_GHCziInt_I8zh_static_info","-u","_base_GHCziInt_I16zh_static_info","-u","_base_GHCziInt_I32zh_static_info","-u","_base_GHCziInt_I64zh_static_info","-u","_base_GHCziWord_W8zh_static_info","-u","_base_GHCziWord_W16zh_static_info","-u","_base_GHCziWord_W32zh_static_info","-u","_base_GHCziWord_W64zh_static_info","-u","_base_GHCziStable_StablePtr_static_info","-u","_ghczmprim_GHCziTypes_Izh_con_info","-u","_ghczmprim_GHCziTypes_Czh_con_info","-u","_ghczmprim_GHCziTypes_Fzh_con_info","-u","_ghczmprim_GHCziTypes_Dzh_con_info","-u","_base_GHCziPtr_Ptr_con_info","-u","_base_GHCziPtr_FunPtr_con_info","-u","_base_GHCziStable_StablePtr_con_info","-u","_ghczmprim_GHCziTypes_False_closure","-u","_ghczmprim_GHCziTypes_True_closure","-u","_base_GHCziPack_unpackCString_closure","-u","_base_GHCziIOziException_stackOverflow_closure","-u","_base_GHCziIOziException_heapOverflow_closure","-u","_base_ControlziExceptionziBase_nonTermination_closure","-u","_base_GHCziIOziException_blockedIndefinitelyOnMVar_closure","-u","_base_GHCziIOziException_blockedIndefinitelyOnSTM_closure","-u","_base_ControlziExceptionziBase_nestedAtomically_closure","-u","_base_GHCziWeak_runFinalizzerBatch_closure","-u","_base_GHCziTopHandler_runIO_closure","-u","_base_GHCziTopHandler_runNonIO_closure","-u","_base_GHCziConcziIO_ensureIOManagerIsRunning_closure","-u","_base_GHCziConcziSync_runSparks_closure","-u","_base_GHCziConcziSignal_runHandlers_closure","-Wl,-search_paths_first","-read_only_relocs","warning"], frameworkDirs = [], frameworks = [], haddockInterfaces = [], haddockHTMLs = []}])]),(PackageName "transformers",fromList [(Version {versionBranch = [0,2,2,0], versionTags = []},[InstalledPackageInfo {installedPackageId = InstalledPackageId "transformers-0.2.2.0-c2ad790294a3a824ec99c0e828257dc3", sourcePackageId = PackageIdentifier {pkgName = PackageName "transformers", pkgVersion = Version {versionBranch = [0,2,2,0], versionTags = []}}, license = BSD3, copyright = "", maintainer = "Ross Paterson <ross@soi.city.ac.uk>", author = "Andy Gill, Ross Paterson", stability = "", homepage = "", pkgUrl = "", description = "Haskell 98 part of a monad transformer library, inspired by the paper\n\\\"Functional Programming with Overloading and Higher-Order Polymorphism\\\",\nby Mark P Jones, in /Advanced School of Functional Programming/, 1995\n(<http://web.cecs.pdx.edu/~mpj/pubs/springschool.html>).\n\nThis part contains the monad transformer class, the concrete monad\ntransformers, operations and liftings.  It can be used on its own\nin Haskell 98 code, or with the monad classes in the @monads-fd@ or\n@monads-tf@ packages, which automatically lift operations introduced\nby monad transformers through other transformers.", category = "Control", exposed = True, exposedModules = [ModuleName ["Control","Monad","IO","Class"],ModuleName ["Control","Monad","Trans","Class"],ModuleName ["Control","Monad","Trans","Cont"],ModuleName ["Control","Monad","Trans","Error"],ModuleName ["Control","Monad","Trans","Identity"],ModuleName ["Control","Monad","Trans","List"],ModuleName ["Control","Monad","Trans","Maybe"],ModuleName ["Control","Monad","Trans","Reader"],ModuleName ["Control","Monad","Trans","RWS"],ModuleName ["Control","Monad","Trans","RWS","Lazy"],ModuleName ["Control","Monad","Trans","RWS","Strict"],ModuleName ["Control","Monad","Trans","State"],ModuleName ["Control","Monad","Trans","State","Lazy"],ModuleName ["Control","Monad","Trans","State","Strict"],ModuleName ["Control","Monad","Trans","Writer"],ModuleName ["Control","Monad","Trans","Writer","Lazy"],ModuleName ["Control","Monad","Trans","Writer","Strict"],ModuleName ["Data","Functor","Compose"],ModuleName ["Data","Functor","Constant"],ModuleName ["Data","Functor","Identity"],ModuleName ["Data","Functor","Product"]], hiddenModules = [], importDirs = ["/Users/matt/.cabal/lib/transformers-0.2.2.0/ghc-7.2.1"], libraryDirs = ["/Users/matt/.cabal/lib/transformers-0.2.2.0/ghc-7.2.1"], hsLibraries = ["HStransformers-0.2.2.0"], extraLibraries = [], extraGHCiLibraries = [], includeDirs = [], includes = [], depends = [InstalledPackageId "base-4.4.0.0-1b1454fb31b066529d7c19c4618311fe"], hugsOptions = [], ccOptions = [], ldOptions = [], frameworkDirs = [], frameworks = [], haddockInterfaces = ["/Users/matt/.cabal/share/doc/transformers-0.2.2.0/html/transformers.haddock"], haddockHTMLs = ["/Users/matt/.cabal/share/doc/transformers-0.2.2.0/html"]}])])]), pkgDescrFile = Just "./ImperativeHaskell.cabal", localPkgDescr = PackageDescription {package = PackageIdentifier {pkgName = PackageName "ImperativeHaskell", pkgVersion = Version {versionBranch = [0,2,0,1], versionTags = []}}, license = GPL (Just (Version {versionBranch = [3], versionTags = []})), licenseFile = "LICENSE", copyright = "", maintainer = "Matthew Mirman <mmirman@andrew.cmu.edu>", author = "Matthew Mirman", stability = "", testedWith = [], homepage = "https://github.com/mmirman/ImperativeHaskell", pkgUrl = "", bugReports = "", sourceRepos = [SourceRepo {repoKind = RepoHead, repoType = Just Git, repoLocation = Just "git://github.com/mmirman/ImperativeHaskell.git", repoModule = Nothing, repoBranch = Nothing, repoTag = Nothing, repoSubdir = Nothing}], synopsis = "A library for writing Imperative style haskell.", description = "A monad that uses GADTs and continuations\nto replicate what it is like to program\nin an imperative language like C or Java\nwith \"return\", \"for\", \"break\", \"continue\",\nand mutable references.", category = "Control", customFieldsPD = [], buildDepends = [Dependency (PackageName "base") (IntersectVersionRanges (IntersectVersionRanges (UnionVersionRanges (ThisVersion (Version {versionBranch = [4,0], versionTags = []})) (LaterVersion (Version {versionBranch = [4,0], versionTags = []}))) (EarlierVersion (Version {versionBranch = [5,0], versionTags = []}))) (ThisVersion (Version {versionBranch = [4,4,0,0], versionTags = []}))),Dependency (PackageName "mtl") (IntersectVersionRanges (IntersectVersionRanges (LaterVersion (Version {versionBranch = [2,0], versionTags = []})) (EarlierVersion (Version {versionBranch = [3,0], versionTags = []}))) (ThisVersion (Version {versionBranch = [2,0,1,0], versionTags = []})))], specVersionRaw = Right (UnionVersionRanges (ThisVersion (Version {versionBranch = [1,6], versionTags = []})) (LaterVersion (Version {versionBranch = [1,6], versionTags = []}))), buildType = Just Simple, library = Just (Library {exposedModules = [ModuleName ["Control","Monad","Imperative"],ModuleName ["Control","Monad","Imperative","ImperativeMonad"],ModuleName ["Control","Monad","Imperative","ImperativeOperators"]], libExposed = True, libBuildInfo = BuildInfo {buildable = True, buildTools = [], cppOptions = [], ccOptions = [], ldOptions = [], pkgconfigDepends = [], frameworks = [], cSources = [], hsSourceDirs = ["."], otherModules = [], defaultLanguage = Nothing, otherLanguages = [], defaultExtensions = [], otherExtensions = [], oldExtensions = [GADTs,EmptyDataDecls,NoMonomorphismRestriction,GeneralizedNewtypeDeriving,MultiParamTypeClasses,FunctionalDependencies,FlexibleInstances,UndecidableInstances], extraLibs = [], extraLibDirs = [], includeDirs = [], includes = [], installIncludes = [], options = [], ghcProfOptions = [], ghcSharedOptions = [], customFieldsBI = [], targetBuildDepends = [Dependency (PackageName "base") (IntersectVersionRanges (IntersectVersionRanges (UnionVersionRanges (ThisVersion (Version {versionBranch = [4,0], versionTags = []})) (LaterVersion (Version {versionBranch = [4,0], versionTags = []}))) (EarlierVersion (Version {versionBranch = [5,0], versionTags = []}))) (ThisVersion (Version {versionBranch = [4,4,0,0], versionTags = []}))),Dependency (PackageName "mtl") (IntersectVersionRanges (IntersectVersionRanges (LaterVersion (Version {versionBranch = [2,0], versionTags = []})) (EarlierVersion (Version {versionBranch = [3,0], versionTags = []}))) (ThisVersion (Version {versionBranch = [2,0,1,0], versionTags = []})))]}}), executables = [], testSuites = [], dataFiles = [], dataDir = "", extraSrcFiles = [], extraTmpFiles = []}, withPrograms = [("alex",ConfiguredProgram {programId = "alex", programVersion = Just (Version {versionBranch = [2,3,5], versionTags = []}), programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/bin/alex"}}),("ar",ConfiguredProgram {programId = "ar", programVersion = Nothing, programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/bin/ar"}}),("c2hs",ConfiguredProgram {programId = "c2hs", programVersion = Just (Version {versionBranch = [0,16,2], versionTags = []}), programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/local/bin/c2hs"}}),("cpphs",ConfiguredProgram {programId = "cpphs", programVersion = Just (Version {versionBranch = [1,11], versionTags = []}), programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/local/bin/cpphs"}}),("gcc",ConfiguredProgram {programId = "gcc", programVersion = Just (Version {versionBranch = [4,2,1], versionTags = []}), programDefaultArgs = ["-m32"], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/bin/gcc"}}),("ghc",ConfiguredProgram {programId = "ghc", programVersion = Just (Version {versionBranch = [7,2,1], versionTags = []}), programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/bin/ghc"}}),("ghc-pkg",ConfiguredProgram {programId = "ghc-pkg", programVersion = Just (Version {versionBranch = [7,2,1], versionTags = []}), programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/bin/ghc-pkg"}}),("haddock",ConfiguredProgram {programId = "haddock", programVersion = Just (Version {versionBranch = [2,9,2], versionTags = []}), programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/bin/haddock"}}),("happy",ConfiguredProgram {programId = "happy", programVersion = Just (Version {versionBranch = [1,18,6], versionTags = []}), programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/bin/happy"}}),("hsc2hs",ConfiguredProgram {programId = "hsc2hs", programVersion = Just (Version {versionBranch = [0,67], versionTags = []}), programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/bin/hsc2hs"}}),("hscolour",ConfiguredProgram {programId = "hscolour", programVersion = Just (Version {versionBranch = [1,17], versionTags = []}), programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/Users/matt/.cabal/bin/HsColour"}}),("ld",ConfiguredProgram {programId = "ld", programVersion = Nothing, programDefaultArgs = ["-x","-arch","i386"], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/bin/ld"}}),("pkg-config",ConfiguredProgram {programId = "pkg-config", programVersion = Just (Version {versionBranch = [0,23], versionTags = []}), programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/sw/bin/pkg-config"}}),("ranlib",ConfiguredProgram {programId = "ranlib", programVersion = Nothing, programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/bin/ranlib"}}),("strip",ConfiguredProgram {programId = "strip", programVersion = Nothing, programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/usr/bin/strip"}}),("tar",ConfiguredProgram {programId = "tar", programVersion = Nothing, programDefaultArgs = [], programOverrideArgs = [], programLocation = FoundOnSystem {locationPath = "/sw/bin/tar"}})], withPackageDB = [GlobalPackageDB,UserPackageDB], withVanillaLib = True, withProfLib = False, withSharedLib = False, withProfExe = False, withOptimization = NormalOptimisation, withGHCiLib = True, splitObjs = False, stripExes = True, progPrefix = "", progSuffix = ""}