blob: 1d473b66f072a77d05e006dad2936cc3ecca7dd2 [file] [log] [blame]
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart = 2.9
/// @assertion SplayTreeMap([int compare(K key1, K key2),
/// bool isValidKey(potentialKey)])
/// If the [compare] function is omitted, the objects are assumed to be
/// [Comparable], and are compared using their [Comparable.compareTo] method.
/// Non-comparable objects (including [null]) will not work as keys in that case.
/// @description Checks that [compare] method is omitted and
/// [compareTo(other) == 0] then [map.containsKey(b)] returns [true]
/// @author sgrekhov@unipro.ru
import "dart:collection";
import "../../../Utils/expect.dart";
class C implements Comparable{
int value;
C(this.value);
int compareTo(Object other) {
return this.value - (other as C).value;
}
}
main() {
SplayTreeMap map = new SplayTreeMap();
C c1 = new C(1);
C c2 = new C(1);
map[c1] = 1;
Expect.isTrue(map.containsKey(c2));
}