Skip to content

Commit

Permalink
mess with module structure 2 electric boogaloo
Browse files Browse the repository at this point in the history
  • Loading branch information
schurhammer committed May 26, 2023
1 parent 5d15dbc commit a67577f
Show file tree
Hide file tree
Showing 13 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import gleam/order.{Order}
import gleam/list
import gleamy/structures/tree/red_black_tree_kv as tree
import gleamy_structures/tree/red_black_tree_kv as tree

type Map(k, v) =
tree.Tree(k, v)
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import gleam/order.{Order}
import gleam/list
import gleamy/structures/heap/pairing_heap as heap
import gleamy_structures/heap/pairing_heap as heap

type Queue(a) =
heap.Heap(a)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import gleam/order.{Order}
import gleam/list
import gleam/io
import gleam/string
import gleamy/structures/tree/red_black_tree as tree
import gleamy_structures/tree/red_black_tree as tree

type Set(a) =
tree.Tree(a)
Expand Down
2 changes: 1 addition & 1 deletion test/map_test.gleam
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import gleeunit/should
import gleam/string
import gleam/list
import gleamy/structures/map
import gleamy_structures/map

pub fn insert_and_find_test() {
let map = map.new(string.compare)
Expand Down
2 changes: 1 addition & 1 deletion test/non_empty_list_test.gleam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import gleeunit/should
import gleamy/structures/non_empty_list
import gleamy_structures/non_empty_list

pub fn fold_test() {
let list = non_empty_list.End(1)
Expand Down
2 changes: 1 addition & 1 deletion test/priority_queue_test.gleam
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import gleeunit/should
import gleam/int
import gleam/order
import gleamy/structures/priority_queue as queue
import gleamy_structures/priority_queue as queue

pub fn from_list_test() {
let queue = queue.from_list([3, 1, 4, 1, 5], int.compare)
Expand Down
2 changes: 1 addition & 1 deletion test/set_test.gleam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import gleeunit/should
import gleam/int
import gleamy/structures/set
import gleamy_structures/set

pub fn contains_test() {
let set = set.new(int.compare)
Expand Down

0 comments on commit a67577f

Please sign in to comment.