Created
July 25, 2013 22:24
-
-
Save martinwells/6084333 to your computer and use it in GitHub Desktop.
How to extend haxe map classes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Since you can't do: | |
// class MyMap<String, String> extends Map<String, String> | |
// Try... | |
import haxe.ds.ObjectMap; | |
class ObjectMyMap extends ObjectMap<String, String> | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment