Haxe 3.4 - Dict
डिक्ट < के , वी >

डिक्ट < के , वी >
पैकेज python
अजगर पर उपलब्ध हैHaxe 3.4 - Dict
पैकेज python
अजगर पर उपलब्ध है
new
()
read only
length
:
Int
clear
():
Void
copy
():
Dict
<
K
,
V
>
get
(
key:
K
,
?def:
V
):
V
inline
getSafe
(
key:
K
):
V
inline
hasKey
(
k:
K
):
Bool
items
():
DictView
<
Tuple2
<
K
,
V
>>
inline
iter
():
NativeIterator
<
K
>
inline
iterator
():
Iterator
<
V
>
keys
():
DictView
<
K
>
pop
(
key:
K
,
?def:
V
):
V
popitem
():
Tuple2
<
K
,
V
>
inline
remove
(
key:
K
):
Void
inline
set
(
key:
K
,
val:
V
):
Void
setdefault
(
key:
K
,
?def:
V
):
V
update
(
d:
Dict
<
K
,
V
>
):
Void
values
():
DictView
<
V
>