 |
Qore Programming Language Reference Manual
0.9.11
|
77 auto get(
string path, *reference<*string> unmatched);
95 nothing
put(
string path,
auto value);
nothing put(string path, auto value)
Puts the mapping of path to value into the container.
constructor()
Creates an empty TreeMap container.
*hash getAll()
Retrieves the entire TreeMap as a hash; returns NOTHING if the TreeMap is empty.
hash< auto > hash(object obj)
Returns a hash of an object's members.
copy()
Throws an exception; objects of this class cannot be copied.
destructor()
Releases any resource held by the instance.
auto take(string path)
Removes a value from the TreeMap and returns the value removed.
A container for efficient path prefix lookup.
Definition: QC_TreeMap.dox.h:25
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3
auto get(string path, *reference< *string > unmatched)
Retrieves a value from the TreeMap and optionally returns the unmatched path suffix.