Skip to content

Instantly share code, notes, and snippets.

@martinwells
Created July 25, 2013 22:24
Show Gist options
  • Save martinwells/6084333 to your computer and use it in GitHub Desktop.
Save martinwells/6084333 to your computer and use it in GitHub Desktop.
How to extend haxe map classes
// 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