8 lines
112 B
Haxe
8 lines
112 B
Haxe
package yaml.util;
|
|
|
|
#if haxe3
|
|
typedef IntMap<T> = haxe.ds.IntMap<T>;
|
|
#else
|
|
typedef IntMap<T> = IntHash<T>;
|
|
#end
|