Skip to content

Commit 498b95f

Browse files
committed
Move internal tools into their own namespace
1 parent 4383d8a commit 498b95f

File tree

3 files changed

+44
-42
lines changed

3 files changed

+44
-42
lines changed

examples/stdlib/map/counter.effekt

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ def main() = {
3535
test("do")
3636
test("Effekt")
3737

38-
println(ctr.toList.prettyPairs)
38+
println(map::internal::prettyPairs(ctr.toList))
3939
}

examples/stdlib/map/map.effekt

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@ def main() = {
44
val l = [(0, "Hello"), (1, "World"), (2, "Woo!")]
55

66
val m = map::fromList(l)
7-
println(m.toList.prettyPairs)
7+
println(map::internal::prettyPairs(m.toList))
88

99
val m2 = m.put(-1, "Hullo")
10-
println(m2.toList.prettyPairs)
10+
println(map::internal::prettyPairs(m2.toList))
1111

1212
val m3 = m2.put(-10, "EY")
13-
println(m3.toList.prettyPairs)
13+
println(map::internal::prettyPairs(m3.toList))
1414

1515
// ...
1616

1717
val m4 = m.delete(1).put(42, "Whole new world!").put(100, "Big").put(1000, "Bigger").put(10000, "Biggest!")
18-
println(m4.toList.prettyPairs)
18+
println(map::internal::prettyPairs(m4.toList))
1919

2020
val m5 = map::fromList(Cons((1, "Foo"), Cons((-1, "Huh?!"), m4.toList.reverse)))
21-
println(m5.toList.prettyPairs)
21+
println(map::internal::prettyPairs(m5.toList))
2222

2323
val m6: Map[Int, String] = m5.toList.fromList
24-
println(m6.toList.prettyPairs)
24+
println(map::internal::prettyPairs(m6.toList))
2525

2626
val nuMap = map::fromList(l.reverse)
27-
println(nuMap.toList.prettyPairs)
27+
println(map::internal::prettyPairs(nuMap.toList))
2828
}

libraries/common/map.effekt

+36-34
Original file line numberDiff line numberDiff line change
@@ -668,47 +668,49 @@ def putMax[K, V](m: Map[K, V], k: K, v: V): Map[K, V] = {
668668
}
669669
}
670670

671-
// Section: internal utilities for tests:
671+
/// Section: internal utilities
672+
namespace internal {
673+
// Section: for tests and invariants:
672674

673-
/// Check if a map `m` is balanced.
674-
def isBalanced[K, V](m: Map[K, V]): Bool = {
675-
m match {
676-
case Tip() => true
677-
case Bin(_, _, _, l, r) =>
678-
val bothSmall = l.size() + r.size() <= 1
679-
val leftSmallEnough = l.size() <= delta * r.size()
680-
val rightSmallEnough = r.size() <= delta * l.size()
681-
(bothSmall || (leftSmallEnough && rightSmallEnough)) && isBalanced(l) && isBalanced(r)
675+
/// Check if a map `m` is balanced.
676+
def isBalanced[K, V](m: Map[K, V]): Bool = {
677+
m match {
678+
case Tip() => true
679+
case Bin(_, _, _, l, r) =>
680+
val bothSmall = l.size() + r.size() <= 1
681+
val leftSmallEnough = l.size() <= delta * r.size()
682+
val rightSmallEnough = r.size() <= delta * l.size()
683+
(bothSmall || (leftSmallEnough && rightSmallEnough)) && isBalanced(l) && isBalanced(r)
684+
}
682685
}
683-
}
684686

685-
// Section: prettyprinting for tree maps and list maps
687+
// Section: prettyprinting for tree maps and list maps:
686688

687-
def prettyMap[K, V](m: Map[K, V]): String = {
688-
// Helper function to recursively build the string representation of the tree
689-
def go(t: Map[K, V], prefix: String, isTail: Bool): String = {
690-
t match {
691-
case Tip() => ""
692-
case Bin(_, k, v, l, r) =>
693-
val pair = k.genericShow ++ " → " ++ v.genericShow
694-
val currentLine = prefix ++ (if (isTail) "└── " else "├── ") ++ pair ++ "\n"
689+
def prettyMap[K, V](m: Map[K, V]): String = {
690+
// Helper function to recursively build the string representation of the tree
691+
def go(t: Map[K, V], prefix: String, isTail: Bool): String = {
692+
t match {
693+
case Tip() => ""
694+
case Bin(_, k, v, l, r) =>
695+
val pair = k.genericShow ++ " → " ++ v.genericShow
696+
val currentLine = prefix ++ (if (isTail) "└── " else "├── ") ++ pair ++ "\n"
695697

696-
val newPrefix = prefix ++ (if (isTail) " " else "│ ")
697-
val leftStr = go(l, newPrefix, false)
698-
val rightStr = go(r, newPrefix, true)
698+
val newPrefix = prefix ++ (if (isTail) " " else "│ ")
699+
val leftStr = go(l, newPrefix, false)
700+
val rightStr = go(r, newPrefix, true)
699701

700-
currentLine ++ leftStr ++ rightStr
702+
currentLine ++ leftStr ++ rightStr
703+
}
701704
}
702-
}
703705

704-
// Start the recursion with the initial map, an empty prefix, and true for the root being the tail
705-
go(m, "", true)
706-
}
706+
// Start the recursion with the initial map, an empty prefix, and true for the root being the tail
707+
go(m, "", true)
708+
}
707709

708-
def prettyPairs[K, V](list: List[(K, V)]): String = {
709-
val res: String =
710-
list.map { case (k, v) => k.genericShow ++ " → " ++ v.genericShow }
711-
.join(", ")
710+
def prettyPairs[K, V](list: List[(K, V)]): String = {
711+
val res: String =
712+
list.map { case (k, v) => k.genericShow ++ " → " ++ v.genericShow }
713+
.join(", ")
712714

713-
"[" ++ res ++ "]"
714-
}
715+
"[" ++ res ++ "]"
716+
}

0 commit comments

Comments
 (0)