Skip to content

Commit 541d524

Browse files
committed
Add data structure libraries
1 parent 9935550 commit 541d524

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,10 @@ Looking for something to build? Check out [the suggestions list][suggestions].
118118
- [delay](https://github.com/bwireman/delay) - [📚](https://hexdocs.pm/delay/) - A dead simple data-structure for delaying side effects
119119
- [gleam_stdlib](https://github.com/gleam-lang/stdlib) - [📚](https://hexdocs.pm/gleam_stdlib/) - A standard library for the Gleam programming language
120120
- [gleam_zlists](https://github.com/mrdimosthenis/gleam_zlists) - [📚](https://hexdocs.pm/gleam_zlists/) - A library for working with lazy lists in Gleam
121+
- [gleamy_structures](https://github.com/schurhammer/gleamy_structures/) - [📚](https://hexdocs.pm/gleamy_structures/) - Data structures in pure Gleam! Including tree, heap, non empty list, map, set, and priority queue.
121122
- [glearray](https://github.com/fschwalbe/glearray) - [📚](https://hexdocs.pm/glearray/) - Immutable arrays for Gleam
122123
- [gleither](https://github.com/bwireman/gleither) - [📚](https://hexdocs.pm/gleither/) - A small data-structure for representing an Either Monad
124+
- [iv](https://gitlab.com/arkandos/iv) - [📚](https://hexdocs.pm/iv/) - A fast, safe, batteries-included array for Gleam!
123125
- [non_empty_list](https://github.com/giacomocavalieri/non_empty_list) - [📚](https://hexdocs.pm/non_empty_list/) - Non-empty lists in Gleam
124126
- [tote](https://github.com/giacomocavalieri/tote) - [📚](https://hexdocs.pm/tote/) - Bags (or multisets) in Gleam
125127
- [trie_again](https://github.com/giacomocavalieri/trie_again) - [📚](https://hexdocs.pm/trie_again/) - Tries in Gleam

packages/gleamy_structures.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
name = "gleamy_structures"
2+
description = "Data structures in pure Gleam! Including tree, heap, non empty list, map, set, and priority queue."
3+
repo_url = "https://github.com/schurhammer/gleamy_structures/"
4+
category = "Data Structures"

packages/iv.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
name = "iv"
2+
description = "A fast, safe, batteries-included array for Gleam!"
3+
repo_url = "https://gitlab.com/arkandos/iv"
4+
category = "Data Structures"

0 commit comments

Comments
 (0)