aboutsummaryrefslogtreecommitdiffhomepage
path: root/std/Set.bruijn
blob: 5f6433579eb3cdfef4ab8455149c1b189b46421b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# MIT License, Copyright (c) 2023 Marvin Borner
# Set implementation using AVL trees
# can currently only store Numbers (due to std/Tree/Balanced)

:import std/Tree/Balanced T

# empty set
empty T.empty ⧗ Set

# adds a number of a set
add T.insert ⧗ Number → Set → Set

# returns true if a number is in a set
has? T.has? ⧗ Number → Set → Boolean

# converts a set to a list
list! T.list! ⧗ Set → (List Number)

# converts a list to a set
from-list T.from-list ⧗ (List Number) → Set