diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-05-24 14:55:21 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-05-24 14:55:21 +0200 |
| commit | 5c06480ce0d6b3352f3a7977a692ef3d322c49b6 (patch) | |
| tree | 4881b9d076cdf89d59b7f777cc709e41c831a5ab /examples | |
| parent | e2af3652c50b14eafd4086e081fd3024a8bd63e9 (diff) | |
Add `core:container/rbtree` to examples/all
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/all/all_main.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin index 3eebdf0b0..8eba0fb5d 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -21,6 +21,7 @@ import queue "core:container/queue" import small_array "core:container/small_array" import lru "core:container/lru" import list "core:container/intrusive/list" +import rbtree "core:container/rbtree" import topological_sort "core:container/topological_sort" import crypto "core:crypto" @@ -147,6 +148,7 @@ _ :: queue _ :: small_array _ :: lru _ :: list +_ :: rbtree _ :: topological_sort _ :: crypto _ :: crypto_hash |