Int64Map

cpp.Int64Map (Class)
Implements: haxe.IMap

Instance Members

set(key: haxe.Int64, value: cpp.Int64Map.T): Void
Name Type
key haxe.Int64
value cpp.Int64Map.T

get(key: haxe.Int64): Null<cpp.Int64Map.T>
Name Type
key haxe.Int64
Returns
Null<cpp.Int64Map.T>

exists(key: haxe.Int64): Bool
Name Type
key haxe.Int64
Returns
Bool

remove(key: haxe.Int64): Bool
Name Type
key haxe.Int64
Returns
Bool

keys(): Iterator
Returns
Iterator

iterator(): Iterator
Returns
Iterator

keyValueIterator(): KeyValueIterator
Returns
KeyValueIterator

new(): Void

Private Members

Metadata

Name Parameters
:headerClassCode "\n inline void set(cpp::Int64 key, ::null value) { __int64_hash_set(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, bool value) { __int64_hash_set(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, char value) { __int64_hash_set_int(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, unsigned char value) { __int64_hash_set_int(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, signed char value) { __int64_hash_set_int(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, short value) { __int64_hash_set_int(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, unsigned short value) { __int64_hash_set_int(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, int value) { __int64_hash_set_int(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, unsigned int value) { __int64_hash_set_int(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, float value) { __int64_hash_set_float(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, double value) { __int64_hash_set_float(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, ::String value) { __int64_hash_set_string(HX_MAP_THIS,key,value); }\n inline void set(cpp::Int64 key, cpp::Int64 value) { __int64_hash_set_int64(HX_MAP_THIS,key,value); }\n\n template<typename V, typename H>\n inline void set(cpp::Int64 key, const ::cpp::Struct<V,H> &value) {__int64_hash_set(HX_MAP_THIS,key,value); }\n template\n inline void set(cpp::Int64 key, const ::cpp::Function &value) {__int64_hash_set(HX_MAP_THIS,key,value); }\n template\n inline void set(cpp::Int64 key, const ::cpp::Pointer &value) {__int64_hash_set(HX_MAP_THIS,key,(Dynamic)value ); }\n\n template\n inline void set(Dynamic &key, const VALUE &value) { set( (cpp::Int64)key, value ); }\n\n inline bool get_bool(cpp::Int64 key) { return __int64_hash_get_bool(h,key); }\n inline int get_int(cpp::Int64 key) { return __int64_hash_get_int(h,key); }\n inline Float get_float(cpp::Int64 key) { return __int64_hash_get_float(h,key); }\n inline String get_string(cpp::Int64 key) { return __int64_hash_get_string(h,key); }\n inline cpp::Int64 get_int64(cpp::Int64 key) { return __int64_hash_get_int64(h,key); }\n"