Dart
dart:collection
SplayTreeMap
<
K
,
V
>
containsKey method
containsKey
SplayTreeMap class
Constructors
SplayTreeMap
from
fromIterable
fromIterables
of
Properties
isEmpty
isNotEmpty
keys
length
values
entries
hashCode
runtimeType
Methods
addAll
clear
containsKey
containsValue
firstKey
firstKeyAfter
forEach
lastKey
lastKeyBefore
putIfAbsent
remove
addEntries
cast
map
noSuchMethod
removeWhere
toString
update
updateAll
Operators
operator []
operator []=
operator ==
containsKey method
bool
containsKey
(
Object
key
)
Implementation
bool containsKey(Object key) { return _validKey(key) && _splay(key) == 0; }