dataCount class
Methods
-
bubbledown(int i)
→ dynamic
-
-
bubbleup(int i)
→ dynamic
-
-
check()
→ void
-
-
get(String key)
→ Map<String, dynamic>?
-
-
insert(String key, Map<String, dynamic> data)
→ void
-
if(key already exist) count+1,also set data to newdata
if(key not exist)
if(not full) insert keyCount(data: data,count: 1)
if(full) insert keyCount(data: data,count: minUseCount+1)
-
lchild(int i)
→ keyCount?
-
-
modify(String key, Map<String, dynamic> change)
→ void
-
modify data,without adding count
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
parent(int i)
→ keyCount?
-
-
rchild(int i)
→ keyCount?
-
-
swap(int a, int b)
→ dynamic
-
-
toMap()
→ Map<String, dynamic>
-
-
toString()
→ String
-
A string representation of this object.
inherited