Agnos.HeteroMap.AddNewMap C# (CSharp) Method

AddNewMap() public method

Adds a new HeteroMap instance to this HeteroMap under the given key This is a convenience function, used by the Agnos binding code, but it's not expected to be useful to the general public.
public AddNewMap ( String name ) : HeteroMap
name String /// The key ///
return HeteroMap
        public HeteroMap AddNewMap(String name)
        {
            HeteroMap hm = new HeteroMap ();
            Add (name, Packers.Str, hm, Packers.builtinHeteroMapPacker);
            return hm;
        }