Skip to content

Commit

Permalink
Merge pull request #3 from Matthew-Mosior/map
Browse files Browse the repository at this point in the history
[ new ] Map and Set
  • Loading branch information
stefan-hoeck authored Sep 25, 2024
2 parents b99c353 + 953a4ce commit 3f303a1
Show file tree
Hide file tree
Showing 8 changed files with 3,224 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
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
8 changes: 6 additions & 2 deletions containers.ipkg
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
11 changes: 11 additions & 0 deletions profile/profile.ipkg
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
Loading

0 comments on commit 3f303a1

Please sign in to comment.