Tests if a specific element in this Map exists and is a Sofu.Map

- key (String)
- Element to look for

True if the element is there and is a Map, false otherwise


Sofu.Sofu.Map file = SofuReader.LoadFile("file.sofu"); if (file.HasMap("Output")) { file.map("Output").Write("output.sofu"); } else { Sofu.Sofu.Map output = new Sofu.Sofu.Map(); output.Write("output.sofu"); }