We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d001171 commit dc27759Copy full SHA for dc27759
src/libstd/treemap.rs
@@ -23,11 +23,13 @@ use core::prelude::*;
23
// as a right child. The time complexity is the same, and re-balancing
24
// operations are more frequent but also cheaper.
25
26
-// TODO: implement Ord for TreeSet
+// Future improvements:
27
+
28
+// implement Ord for TreeSet
29
// could be superset/subset-based or in-order lexicographic comparison... but
30
// there are methods for is_superset/is_subset so lexicographic is more useful
31
-// TODO: (possibly) implement the overloads Python does for sets:
32
+// (possibly) implement the overloads Python does for sets:
33
// * union: |
34
// * intersection: &
35
// * difference: -
0 commit comments