summaryrefslogtreecommitdiffstats
path: root/library/std/src/collections/hash/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/collections/hash/mod.rs')
-rw-r--r--library/std/src/collections/hash/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/std/src/collections/hash/mod.rs b/library/std/src/collections/hash/mod.rs
new file mode 100644
index 000000000..348820af5
--- /dev/null
+++ b/library/std/src/collections/hash/mod.rs
@@ -0,0 +1,4 @@
+//! Unordered containers, implemented as hash-tables
+
+pub mod map;
+pub mod set;