Qore Programming Language Reference Manual  0.8.11.1
QC_TreeMap.dox.h
1 namespace Qore {
4 
24 class TreeMap {
25 
26 public:
28 
30  constructor();
31 
32 public:
34 
36  copy();
37 
38 public:
40 
42  destructor();
43 
44 public:
46 
54 any get(string path);
55 
56 public:
58 
61 nothing put(string path, any value);
62 };
63 };
A container for efficient path prefix lookup.
Definition: QC_TreeMap.dox.h:24
destructor()
Releases any resource held by the instance.
nothing put(string path, any value)
Puts the mapping of path to value into the container.
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:2
copy()
Throws an exception; objects of this class cannot be copied.
constructor()
Creates an empty TreeMap container.