-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Matthew-Mosior/map
[ new ] Map and Set
- Loading branch information
Showing
8 changed files
with
3,224 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# idris2-containers | ||
Basic Tree and Queue data types | ||
Assorted concrete container types |
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,11 +1,15 @@ | ||
package containers | ||
|
||
authors = "stefan-hoeck" | ||
authors = "stefan-hoeck and matthew-mosior" | ||
brief = "Basic Tree and Queue data structures" | ||
version = 0.6.0 | ||
sourcedir = "src" | ||
depends = base >= 0.6.0 | ||
, elab-util | ||
|
||
modules = Data.Queue | ||
modules = Data.Map | ||
, Data.Map.Internal | ||
, Data.Set | ||
, Data.Set.Internal | ||
, Data.Queue | ||
, Data.Tree |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package containers-profile | ||
|
||
authors = "stefan-hoeck and matthew-mosior" | ||
version = 0.7.0 | ||
sourcedir = "src" | ||
depends = containers | ||
, elab-util | ||
, profiler | ||
|
||
executable = "profile-containers" | ||
main = Main |
Oops, something went wrong.