Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: corelib/unified/core/implementation/hash_map_set.dart

Issue 10830117: Port the remaining of dart:core to the unified corelib. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // Hash map implementation with open addressing and quadratic probing. 5 // Hash map implementation with open addressing and quadratic probing.
6 class HashMapImplementation<K extends Hashable, V> implements HashMap<K, V> { 6 class HashMapImplementation<K extends Hashable, V> implements HashMap<K, V> {
7 7
8 // The [_keys] list contains the keys inserted in the map. 8 // The [_keys] list contains the keys inserted in the map.
9 // The [_keys] list must be a raw list because it 9 // The [_keys] list must be a raw list because it
10 // will contain both elements of type K, and the [_DELETED_KEY] of type 10 // will contain both elements of type K, and the [_DELETED_KEY] of type
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 440
441 /** 441 /**
442 * A singleton sentinel used to represent when a key is deleted from the map. 442 * A singleton sentinel used to represent when a key is deleted from the map.
443 * We can't use [: const Object() :] as a sentinel because it would end up 443 * We can't use [: const Object() :] as a sentinel because it would end up
444 * canonicalized and then we cannot distinguish the deleted key from the 444 * canonicalized and then we cannot distinguish the deleted key from the
445 * canonicalized [: Object() :]. 445 * canonicalized [: Object() :].
446 */ 446 */
447 class _DeletedKeySentinel { 447 class _DeletedKeySentinel {
448 const _DeletedKeySentinel(); 448 const _DeletedKeySentinel();
449 } 449 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698