From dc27759bd14fac7657bcc65f9a97fdd6c740f57c Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 15 Jan 2013 06:45:30 -0500 Subject: [PATCH] remove 'TODO' from the list of future improvements --- src/libstd/treemap.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/libstd/treemap.rs b/src/libstd/treemap.rs index 5fd58d28ab1b..127c007a25f3 100644 --- a/src/libstd/treemap.rs +++ b/src/libstd/treemap.rs @@ -23,11 +23,13 @@ use core::prelude::*; // as a right child. The time complexity is the same, and re-balancing // operations are more frequent but also cheaper. -// TODO: implement Ord for TreeSet +// Future improvements: + +// implement Ord for TreeSet // could be superset/subset-based or in-order lexicographic comparison... but // there are methods for is_superset/is_subset so lexicographic is more useful -// TODO: (possibly) implement the overloads Python does for sets: +// (possibly) implement the overloads Python does for sets: // * union: | // * intersection: & // * difference: -