class Mapping::Model

def self.method_for_mapping(klass)

This function generates mapping names like `map_Array` and `map_Hash` which while a bit non-standard are perfectly fine for our purposes and this never really needs to leak.
def self.method_for_mapping(klass)
	PREFIX + klass.name.gsub(/::/, "_")
end