Files
haxework/src/main/yaml/util/IntMap.hx
2020-02-13 17:20:50 +03:00

8 lines
112 B
Haxe

package yaml.util;
#if haxe3
typedef IntMap<T> = haxe.ds.IntMap<T>;
#else
typedef IntMap<T> = IntHash<T>;
#end