Skip to content

Instantly share code, notes, and snippets.

View druttka's full-sized avatar

David Ruttka druttka

View GitHub Profile
@JoeRobich
JoeRobich / HashMap.as
Created September 14, 2012 04:26
ActionScript IoC
package com.thedevstop.utilities
{
import flash.utils.Dictionary;
public class HashMap extends Dictionary
{
public function get(key:*):*
{
return this[key];
}