1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /*
- * Copyright (C)2005-2012 Haxe Foundation
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- * DEALINGS IN THE SOFTWARE.
- */
- package haxe.ds;
- @:headerClassCode("
- inline void set(String key, ::null value) { __string_hash_set(h,key,value); }
- inline void set(String key, bool value) { __string_hash_set(h,key,value); }
- inline void set(String key, char value) { __string_hash_set_int(h,key,value); }
- inline void set(String key, unsigned char value) { __string_hash_set_int(h,key,value); }
- inline void set(String key, signed char value) { __string_hash_set_int(h,key,value); }
- inline void set(String key, short value) { __string_hash_set_int(h,key,value); }
- inline void set(String key, unsigned short value) { __string_hash_set_int(h,key,value); }
- inline void set(String key, int value) { __string_hash_set_int(h,key,value); }
- inline void set(String key, unsigned int value) { __string_hash_set_int(h,key,value); }
- inline void set(String key, float value) { __string_hash_set_float(h,key,value); }
- inline void set(String key, double value) { __string_hash_set_float(h,key,value); }
- inline void set(String key, ::String value) { __string_hash_set_string(h,key,value); }
- template<typename V, typename H>
- inline void set(String key, const ::cpp::Struct<V,H> &value) {__string_hash_set(h,key,value); }
- template<typename V>
- inline void set(String key, const ::cpp::Function<V> &value) {__string_hash_set(h,key,(Dynamic)value ); }
- template<typename V>
- inline void set(String key, const ::cpp::Pointer<V> &value) {__string_hash_set(h,key,(Dynamic)value ); }
- template<typename VALUE>
- inline Void set(Dynamic &key, const VALUE &value) { set( (String)key, value ); return null(); }
- ")
- @:coreApi class StringMap<T> implements haxe.Constraints.IMap<String,T> {
- @:ifFeature("haxe.ds.StringMap.*")
- private var h : Dynamic;
- public function new() : Void { }
- public function set( key : String, value : T ) : Void {
- untyped __global__.__string_hash_set(h,key,value);
- }
- public function get( key : String ) : Null<T> {
- return untyped __global__.__string_hash_get(h,key);
- }
- public function exists( key : String ) : Bool {
- return untyped __global__.__string_hash_exists(h,key);
- }
- public function remove( key : String ) : Bool {
- return untyped __global__.__string_hash_remove(h,key);
- }
- public function keys() : Iterator<String> {
- var a:Array<String> = untyped __global__.__string_hash_keys(h);
- return a.iterator();
- }
- public function iterator() : Iterator<T> {
- var a:Array<Dynamic> = untyped __global__.__string_hash_values(h);
- return a.iterator();
- }
- public function toString() : String {
- return untyped __global__.__string_hash_to_string(h);
- }
- }
|