view base/src/java/util/SortedSet.d @ 75:0b015f5925d8

Fix HashMap.remove, thank to yidabu for the testcase.
author Frank Benoit <benoit@tionex.de>
date Sat, 11 Apr 2009 11:32:49 +0200
parents 1bf55a6eb092
children bbe49769ec18
line wrap: on
line source

module java.util.SortedSet;

import java.lang.all;
import java.util.Set;

interface SortedSet : Set {
    Comparator     comparator();
    Object         first();
    SortedSet      headSet(Object toElement);
    Object         last();
    SortedSet      subSet(Object fromElement, Object toElement);
    SortedSet      tailSet(Object fromElement);
}