-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This refactor removes reliance on Prelude in favour of using it only …
…where appropriate and re-implementing it otherwise. Prelude is appropriate for `instance Show` (and therefore, String), since GHCi relies heavily on this type-class. There is now only one top-level module (`Course`), since the others were poorly categorised. A reasonable categorisation is desirable, but needs more work to determine. Some exercises have been removed. Version number is bumped to indicate no compatiblity.
- Loading branch information
1 parent
dbf96cf
commit 9171af3
Showing
40 changed files
with
2,076 additions
and
2,268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: course | ||
version: 0.0.9 | ||
version: 0.1.0 | ||
license: BSD3 | ||
license-file: etc/LICENCE | ||
author: Tony Morris <[email protected]> | ||
|
@@ -43,34 +43,37 @@ library | |
-fno-warn-type-defaults | ||
|
||
default-extensions: Safe | ||
NoImplicitPrelude | ||
|
||
hs-source-dirs: src | ||
|
||
exposed-modules: Course | ||
Core | ||
Algorithm.Anagrams | ||
Algorithm.Cheque | ||
Algorithm.EditDistance | ||
Algorithm.FastAnagrams | ||
Intro.Id | ||
Intro.Optional | ||
Intro.Validation | ||
IO.Interactive | ||
Monad.Compose | ||
Monad.Functor | ||
Monad.Monad | ||
Monad.State | ||
Monad.StateT | ||
Parser.JsonParser | ||
Parser.JsonValue | ||
Parser.MoreParser | ||
Parser.Parser | ||
Parser.Person | ||
Structure.BKTree | ||
Structure.Lens | ||
Structure.List | ||
Structure.ListZipper | ||
Structure.MetricSpace | ||
Course.Anagrams | ||
Course.Applicative | ||
Course.Apply | ||
Course.Bind | ||
Course.Cheque | ||
Course.Comonad | ||
Course.Compose | ||
Course.Core | ||
Course.Extend | ||
Course.FastAnagrams | ||
Course.Functor | ||
Course.Id | ||
Course.Interactive | ||
Course.JsonParser | ||
Course.JsonValue | ||
Course.List | ||
Course.ListZipper | ||
Course.Monad | ||
Course.MoreParser | ||
Course.Optional | ||
Course.Parser | ||
Course.Person | ||
Course.State | ||
Course.StateT | ||
Course.Traversable | ||
Course.Validation | ||
|
||
test-suite doctests | ||
type: | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.