Qore Programming Language Reference Manual  0.8.12.3
ql_misc.dox.h
1 
3 namespace Qore {
8 
10 
27 nothing remove_signal_handler(softint signal);
28 
30 
50 nothing set_signal_handler(softint signal, code f);
51 
53 };
54 
56 namespace Qore {
61 
63 
85 string backquote(string cmd, *reference rc);
86 
88 
95 nothing backquote();
96 
98 
115 any call_builtin_function(string name, ...);
116 
118 
135 any call_builtin_function_args(string name, *softlist vargs);
136 
138 
153 any call_function(string name, ...);
154 
156 
166 any call_function(code f, ...);
167 
169 
184 any call_function_args(string name, *softlist vargs);
185 
187 
197 any call_function_args(code f, *softlist vargs);
198 
200 
229 string decode_uri_request(string uri);
230 
232 
251 string decode_url(string url);
252 
254 
258 nothing decode_url();
259 
261 
292 string encode_uri_request(string url);
293 
295 
315 string encode_url(string url, softbool encode_all = False);
316 
318 
330 bool exists( ...);
331 
333 
342 bool existsFunction(string name);
343 
345 
356 bool existsFunction(code c);
357 
359 
363 nothing existsFunction();
364 
366 
380 bool exists_function(string name);
381 
383 
394 bool exists_function(code c);
395 
397 
405 *string functionType(string name);
406 
408 
412 nothing functionType();
413 
415 
425 *string function_type(string name);
426 
428 
441 *int getByte(string str, softint offset = 0);
442 
444 
448 nothing getByte();
449 
451 
464 *int getByte(binary b, softint offset = 0);
465 
467 
475 string getClassName(object obj);
476 
478 
482 nothing getClassName();
483 
485 
495 
497 
518 
520 
541 
543 
557 *int getWord32(string str, softint offset = 0);
558 
560 
574 *int getWord32(binary b, softint offset = 0);
575 
577 
581 nothing getWord32();
582 
584 
600 *int get_byte(string str, softint offset = 0);
601 
603 
619 *int get_byte(binary b, softint offset = 0);
620 
622 
637 string get_class_name(object obj);
638 
640 
647 string get_default_encoding();
648 
650 
669 string get_ex_pos(hash ex);
670 
672 
684 
686 
707 
709 
732 
734 
746 int get_parse_options();
747 
749 
772 
774 
793 
795 
812 
814 
821 *string get_script_dir();
822 
824 
831 *string get_script_name();
832 
834 
841 *string get_script_path();
842 
844 
861 *int get_word_16(string str, softint offset = 0);
862 
864 
881 *int get_word_16(binary b, softint offset = 0);
882 
884 
901 *int get_word_16_lsb(string str, softint offset = 0);
902 
904 
921 *int get_word_16_lsb(binary b, softint offset = 0);
922 
924 
943 *int get_word_32(string str, softint offset = 0);
944 
946 
965 *int get_word_32(binary b, softint offset = 0);
966 
968 
987 *int get_word_32_lsb(string str, softint offset = 0);
988 
990 
1007 *int get_word_32_lsb(binary b, softint offset = 0);
1008 
1010 
1027 *int get_word_64(string str, softint offset = 0);
1028 
1030 
1047 *int get_word_64(binary b, softint offset = 0);
1048 
1050 
1067 *int get_word_64_lsb(string str, softint offset = 0);
1068 
1070 
1087 *int get_word_64_lsb(binary b, softint offset = 0);
1088 
1090 
1102 bool has_key(hash h, string key);
1103 
1105 
1114 bool has_key(object obj, string key);
1115 
1117 
1133 list hash_values(hash h);
1134 
1136 
1140 nothing hash_values();
1141 
1143 
1154 int hextoint(string str);
1155 
1157 
1161 nothing hextoint();
1162 
1164 
1180 string html_decode(string str);
1181 
1183 
1187 nothing html_decode();
1188 
1190 
1206 string html_encode(string str);
1207 
1209 
1213 nothing html_encode();
1214 
1216 
1238 nothing load_module(string name);
1239 
1241 
1248 nothing load_module();
1249 
1251 
1268 nothing load_user_module_with_program(string name, Qore::Program pgm);
1269 
1271 
1289 string makeBase64String(string str, softint maxlinelen = -1);
1290 
1292 
1310 string makeBase64String(binary bin, softint maxlinelen = -1);
1311 
1313 
1317 nothing makeBase64String();
1318 
1320 
1334 string makeHexString(string str);
1335 
1337 
1351 string makeHexString(binary bin);
1352 
1354 
1358 nothing makeHexString();
1359 
1361 
1382 string make_base64_string(string str, softint maxlinelen = -1);
1383 
1385 
1406 string make_base64_string(binary bin, softint maxlinelen = -1);
1407 
1409 
1428 string make_hex_string(string str);
1429 
1431 
1450 string make_hex_string(binary bin);
1451 
1453 
1478 *hash parse(string code, string label, *softint warning_mask, *string source, *softint offset, softbool format_label = True);
1479 
1481 
1488 nothing parse();
1489 
1491 
1508 binary parseBase64String(string str);
1509 
1511 
1515 nothing parseBase64String();
1516 
1518 
1538 string parseBase64StringToString(string str, *string encoding);
1539 
1541 
1545 nothing parseBase64StringToString();
1546 
1548 
1563 binary parseHexString(string hexstr);
1564 
1566 
1570 nothing parseHexString();
1571 
1573 
1596 *hash parseURL(string url, bool keep_brackets = False);
1597 
1599 
1603 nothing parseURL();
1604 
1606 
1628 binary parse_base64_string(string str);
1629 
1631 
1656 string parse_base64_string_to_string(string str, *string encoding);
1657 
1659 
1679 binary parse_hex_string(string hexstr);
1680 
1682 
1704 hash parse_url(string url, bool keep_brackets = False);
1705 
1707 
1728 nothing reload_module(string name);
1729 
1731 
1745  set_return_value(any val);
1746 
1748 
1757 string splice(string str);
1758 
1760 
1774 string splice(string str, softint start);
1775 
1777 
1793 string splice(string str, softint start, softint len, *string nstr);
1794 
1796 
1808 list splice(list l, softint start);
1809 
1811 
1827 list splice(list l, softint start, softint len, *softlist nlist);
1828 
1830 
1834 nothing splice();
1835 
1837 
1849 int strtoint(string num, softint base = 10);
1850 
1852 
1856 nothing strtoint();
1857 
1859 };
1860 
1862 namespace Qore {
1870 
1872 
1874  const CE_ALL = CE_ALL;
1876 
1882  const CE_HTML = CE_HTML;
1884 
1890 
1896 
1907  const CE_XML = CE_XML;
1909 };
1910 
1912 namespace Qore {
1920 
1922 
1924  const CD_ALL = CD_ALL;
1926 
1932  const CD_HTML = CD_HTML;
1934 
1938 
1944 
1955  const CD_XML = CD_XML;
1957 };
1958 
1960 namespace Qore {
1965 
1967  const NameToSignal = (
1968  "SIGABRT": SIGABRT,
1969  "SIGALRM": SIGALRM,
1970  "SIGBUS": SIGBUS,
1971  "SIGCANCEL": SIGCANCEL,
1972  "SIGCHLD": SIGCHLD,
1973  "SIGCLD": SIGCLD,
1974  "SIGCONT": SIGCONT,
1975  "SIGEMT": SIGEMT,
1976  "SIGFPE": SIGFPE,
1977  "SIGFREEZE": SIGFREEZE,
1978  "SIGHUP": SIGHUP,
1979  "SIGILL": SIGILL,
1980  "SIGINFO": SIGINFO,
1981  "SIGINT": SIGINT,
1982  "SIGIO": SIGIO,
1983  "SIGIOT": SIGIOT,
1984  "SIGJVM1": SIGJVM1,
1985  "SIGJVM2": SIGJVM2,
1986  "SIGKILL": SIGKILL,
1987  "SIGLOST": SIGLOST,
1988  "SIGLWP": SIGLWP,
1989  "SIGPIPE": SIGPIPE,
1990  "SIGPOLL": SIGPOLL,
1991  "SIGPROF": SIGPROF,
1992  "SIGPWR": SIGPWR,
1993  "SIGQUIT": SIGQUIT,
1994  "SIGSEGV": SIGSEGV,
1995  "SIGSTKFLT": SIGSTKFLT,
1996  "SIGSTOP": SIGSTOP,
1997  "SIGSYS": SIGSYS,
1998  "SIGTERM": SIGTERM,
1999  "SIGTHAW": SIGTHAW,
2000  "SIGTRAP": SIGTRAP,
2001  "SIGTSTP": SIGTSTP,
2002  "SIGTTIN": SIGTTIN,
2003  "SIGTTOU": SIGTTOU,
2004  "SIGURG": SIGURG,
2005  "SIGUSR1": SIGUSR1,
2006  "SIGUSR2": SIGUSR2,
2007  "SIGVTALRM": SIGVTALRM,
2008  "SIGWAITING": SIGWAITING,
2009  "SIGWINCH": SIGWINCH,
2010  "SIGXCPU": SIGXCPU,
2011  "SIGXFSZ": SIGXFSZ,
2012  "SIGXRES": SIGXRES,
2013  );
2015  const SIGABRT = SIGABRT;
2017  const SIGALRM = SIGALRM;
2019  const SIGBUS = SIGBUS;
2023  const SIGCHLD = SIGCHLD;
2025  const SIGCLD = SIGCLD;
2027  const SIGCONT = SIGCONT;
2029  const SIGEMT = SIGEMT;
2031  const SIGFPE = SIGFPE;
2035  const SIGHUP = SIGHUP;
2037  const SIGILL = SIGILL;
2039  const SIGINFO = SIGINFO;
2041  const SIGINT = SIGINT;
2043  const SIGIO = SIGIO;
2045  const SIGIOT = SIGIOT;
2047  const SIGJVM1 = SIGJVM1;
2049  const SIGJVM2 = SIGJVM2;
2051  const SIGKILL = SIGKILL;
2053  const SIGLOST = SIGLOST;
2055  const SIGLWP = SIGLWP;
2057  const SIGPIPE = SIGPIPE;
2059  const SIGPOLL = SIGPOLL;
2061  const SIGPROF = SIGPROF;
2063  const SIGPWR = SIGPWR;
2065  const SIGQUIT = SIGQUIT;
2067  const SIGSEGV = SIGSEGV;
2071  const SIGSTOP = SIGSTOP;
2073  const SIGSYS = SIGSYS;
2075  const SIGTERM = SIGTERM;
2077  const SIGTHAW = SIGTHAW;
2079  const SIGTRAP = SIGTRAP;
2081  const SIGTSTP = SIGTSTP;
2083  const SIGTTIN = SIGTTIN;
2085  const SIGTTOU = SIGTTOU;
2087  const SIGURG = SIGURG;
2089  const SIGUSR1 = SIGUSR1;
2091  const SIGUSR2 = SIGUSR2;
2099  const SIGXCPU = SIGXCPU;
2101  const SIGXFSZ = SIGXFSZ;
2103  const SIGXRES = SIGXRES;
2105  const SignalToName = (
2106  SIGABRT: "SIGABRT",
2107  SIGALRM: "SIGALRM",
2108  SIGBUS: "SIGBUS",
2109  SIGCANCEL: "SIGCANCEL",
2110  SIGCHLD: "SIGCHLD",
2111  SIGCONT: "SIGCONT",
2112  SIGEMT: "SIGEMT",
2113  SIGFPE: "SIGFPE",
2114  SIGFREEZE: "SIGFREEZE",
2115  SIGHUP: "SIGHUP",
2116  SIGILL: "SIGILL",
2117  SIGINFO: "SIGINFO",
2118  SIGINT: "SIGINT",
2119  SIGIO: "SIGIO",
2120  SIGIOT: "SIGIOT",
2121  SIGJVM1: "SIGJVM1",
2122  SIGJVM2: "SIGJVM2",
2123  SIGKILL: "SIGKILL",
2124  SIGLOST: "SIGLOST",
2125  SIGLWP: "SIGLWP",
2126  SIGPIPE: "SIGPIPE",
2127  SIGPOLL: "SIGPOLL",
2128  SIGPROF: "SIGPROF",
2129  SIGPWR: "SIGPWR",
2130  SIGQUIT: "SIGQUIT",
2131  SIGSEGV: "SIGSEGV",
2132  SIGSTKSZ: "SIGSTKSZ",
2133  SIGSTOP: "SIGSTOP",
2134  SIGSYS: "SIGSYS",
2135  SIGTERM: "SIGTERM",
2136  SIGTHAW: "SIGTHAW",
2137  SIGTRAP: "SIGTRAP",
2138  SIGTSTP: "SIGTSTP",
2139  SIGTTIN: "SIGTTIN",
2140  SIGTTOU: "SIGTTOU",
2141  SIGURG: "SIGURG",
2142  SIGUSR1: "SIGUSR1",
2143  SIGUSR2: "SIGUSR2",
2144  SIGVTALRM: "SIGVTALRM",
2145  SIGWAITING: "SIGWAITING",
2146  SIGWINCH: "SIGWINCH",
2147  SIGXCPU: "SIGXCPU",
2148  SIGXFSZ: "SIGXFSZ",
2149  SIGXRES: "SIGXRES",
2150  );
2152 };
const SIGKILL
SIGKILL.
Definition: ql_misc.dox.h:2051
*int get_word_32_lsb(string str, softint offset=0)
Returns the 32-bit integer value at the given 4-byte offset (the first value is at offset 0) or NOTHI...
string get_default_encoding()
Returns the name of the default character encoding.
const SIGSYS
SIGSYS.
Definition: ql_misc.dox.h:2073
const CE_ALL
code for encoding everything
Definition: ql_misc.dox.h:1874
const CE_XML
code for encoding XML entities
Definition: ql_misc.dox.h:1907
const SIGINFO
SIGINFO.
Definition: ql_misc.dox.h:2039
*string get_script_name()
Returns the filename of the current script if known or NOTHING if unknown (i.e. no parent script...
string decode_url(string url)
Decodes percent numeric codes in a URL string and returns the decoded string in UTF-8 encoding...
binary parseHexString(string hexstr)
Parses a hex-encoded string and returns the binary object.
const SIGURG
SIGURG.
Definition: ql_misc.dox.h:2087
string parse_base64_string_to_string(string str, *string encoding)
Parses a base64 encoded string and returns a string of the decoded data.
hash get_qore_option_hash()
Returns a hash of hashes giving information about Qore library options for the current build...
any call_function(string name,...)
Calls a function and returns the return value, passing the remaining arguments after the function nam...
nothing set_signal_handler(softint signal, code f)
Sets or replaces a signal handler according to the signal number and closure or call reference (funct...
const SIGPROF
SIGPROF.
Definition: ql_misc.dox.h:2061
const SIGSTKFLT
SIGSTKFLT.
Definition: ql_misc.dox.h:2069
*hash parse(string code, string label, *softint warning_mask, *string source, *softint offset, softbool format_label=True)
Adds the text passed to the current program's code, tagged with the given label.
Program objects allow Qore programs to support subprograms with the option to restrict capabilities...
Definition: QC_Program.dox.h:29
const SIGBUS
SIGBUS.
Definition: ql_misc.dox.h:2019
*string get_script_path()
Returns the path (directory and filename) of the current script or NOTHING if unknown (i...
const SIGTTOU
SIGTTOU.
Definition: ql_misc.dox.h:2085
string make_base64_string(string str, softint maxlinelen=-1)
Returns a base64-encoded representation of a string.
const SIGQUIT
SIGQUIT.
Definition: ql_misc.dox.h:2065
*int get_word_32(string str, softint offset=0)
Returns the 32-bit integer value at the given 4-byte offset (the first value is at offset 0) or NOTHI...
*string function_type(string name)
Returns "builtin" (for a builtin function), "user" (for a user function), or NOTHING (if the function...
const SIGWINCH
SIGWINCH.
Definition: ql_misc.dox.h:2097
const CD_XHTML
code for decoding XHTML named character references to symbols
Definition: ql_misc.dox.h:1942
const SIGPWR
SIGPWR.
Definition: ql_misc.dox.h:2063
const True
logical True
Definition: qc_qore.dox.h:94
set_return_value(any val)
sets the return value for a Program object when running with %exec-class
const SIGIO
SIGIO.
Definition: ql_misc.dox.h:2043
hash get_module_hash()
Returns a hash of hashes describing the currently-loaded Qore modules; the top-level hash keys are th...
string encode_uri_request(string url)
Encodes URI requests by substituting special characters in the path with percent-encoded ewquivalents...
const CE_XHTML
code for encoding XHTML entities
Definition: ql_misc.dox.h:1894
const SIGCLD
SIGCLD.
Definition: ql_misc.dox.h:2025
const SIGUSR2
SIGUSR2.
Definition: ql_misc.dox.h:2091
*int get_byte(string str, softint offset=0)
Returns the byte value at the given byte offset (the first value is at offset 0) or NOTHING if the of...
const SIGVTALRM
SIGVTALRM.
Definition: ql_misc.dox.h:2093
*hash parseURL(string url, bool keep_brackets=False)
Parses a URL string and returns a hash of the components; if the URL cannot be parsed then NOTHING is...
any call_builtin_function(string name,...)
Calls a function and returns the return value, passing the remaining arguments after the function nam...
binary binary()
Always returns an empty binary object (of zero length)
const SIGSTOP
SIGSTOP.
Definition: ql_misc.dox.h:2071
const SIGTERM
SIGTERM.
Definition: ql_misc.dox.h:2075
bool exists_function(string name)
Returns True if the function exists in the current program's function name space. ...
const SIGALRM
SIGALRM.
Definition: ql_misc.dox.h:2017
*int get_word_16(string str, softint offset=0)
Returns the 16-bit integer value at the given 2-byte offset (the first value is at offset 0) or NOTHI...
string parseBase64StringToString(string str, *string encoding)
Parses a base64 encoded string and returns a string of the decoded data.
const CD_HTML
code for decoding HTML 5 named character references to their native symbols
Definition: ql_misc.dox.h:1932
const SIGTRAP
SIGTRAP.
Definition: ql_misc.dox.h:2079
const False
logical False
Definition: qc_qore.dox.h:92
list get_module_list()
Returns a list of hashes describing the currently-loaded Qore modules.
const SIGCONT
SIGCONT.
Definition: ql_misc.dox.h:2027
list list(...)
Returns a list of the arguments passed at the top level.
const CE_HTML
code for encoding HTML 5 symbols as named character references
Definition: ql_misc.dox.h:1882
nothing load_module(string name)
Loads in a Qore module at run-time.
const SIGLWP
SIGLWP.
Definition: ql_misc.dox.h:2055
string make_hex_string(string str)
Returns a hex-encoded representation of a string.
const SIGTTIN
SIGTTIN.
Definition: ql_misc.dox.h:2083
string html_decode(string str)
Returns a string with any HTML escape codes translated to the original characters.
int hextoint(string str)
Returns an integer for a hexadecimal string value; throws an exception if non-hex digits are found...
*string get_script_dir()
Returns the name of the directory from which the current script was executed or NOTHING if unknown (i...
nothing remove_signal_handler(softint signal)
Removes a signal handler and returns the signal handling state to the default.
const SIGJVM2
SIGJVM2.
Definition: ql_misc.dox.h:2049
const SIGCHLD
SIGCHLD.
Definition: ql_misc.dox.h:2023
nothing load_user_module_with_program(string name, Qore::Program pgm)
Loads in a Qore user module at run-time with using the given Program object as the container for the ...
list hash_values(hash h)
Returns a list of all the values in the hash argument passed.
*int getByte(string str, softint offset=0)
Returns the byte value at the given byte offset (the first value is at offset 0) or NOTHING if the of...
const SIGSEGV
SIGSEGV.
Definition: ql_misc.dox.h:2067
bool exists(...)
A function performing the same role as the exists operator.
int get_parse_options()
returns the current parse options for the current Program object
const SIGEMT
SIGEMT.
Definition: ql_misc.dox.h:2029
list getFeatureList()
Returns a list of strings of the builtin and module-supplied features of Qore.
const SIGABRT
SIGABRT.
Definition: ql_misc.dox.h:2015
const CD_XML
code for decoding XML entities
Definition: ql_misc.dox.h:1955
string splice(string str)
This function always returns an empty string "".
const SignalToName
maps signal numbers (as a string key) to the symbolic name for the signal
Definition: ql_misc.dox.h:2105
list get_feature_list()
Returns a list of strings of the builtin and module-supplied features of Qore.
*string functionType(string name)
Returns "builtin" (for a builtin function), "user" (for a user function), or NOTHING (if the function...
binary parse_hex_string(string hexstr)
Parses a hex-encoded string and returns the binary object.
const SIGFREEZE
SIGFREEZE.
Definition: ql_misc.dox.h:2033
*int getWord32(string str, softint offset=0)
Returns the 32-bit integer value at the given 4-byte offset (the first value is at offset 0) or NOTHI...
string getClassName(object obj)
Returns the class name of the object passed.
const SIGPOLL
SIGPOLL.
Definition: ql_misc.dox.h:2059
const SIGXCPU
SIGXCPU.
Definition: ql_misc.dox.h:2099
string html_encode(string str)
Returns a string with characters needing HTML escaping translated to HTML escape codes.
const SIGHUP
SIGHUP.
Definition: ql_misc.dox.h:2035
const SIGILL
SIGILL.
Definition: ql_misc.dox.h:2037
string makeHexString(string str)
Returns a hex-encoded representation of a string.
binary parseBase64String(string str)
Parses a base64 encoded string and returns a binary object of the decoded data.
hash parse_url(string url, bool keep_brackets=False)
Parses a URL string and returns a hash of the components; throws an exception if the string cannot be...
binary parse_base64_string(string str)
Parses a base64 encoded string and returns a binary object of the decoded data.
const SIGJVM1
SIGJVM1.
Definition: ql_misc.dox.h:2047
const SIGTSTP
SIGTSTP.
Definition: ql_misc.dox.h:2081
any call_builtin_function_args(string name, *softlist vargs)
Calls a function and returns the return value, using the optional second argument as a list of argume...
const SIGFPE
SIGFPE.
Definition: ql_misc.dox.h:2031
*int get_word_64_lsb(string str, softint offset=0)
Returns the 64-bit integer value at the given 8-byte offset (the first value is at offset 0) or NOTHI...
const SIGUSR1
SIGUSR1.
Definition: ql_misc.dox.h:2089
nothing reload_module(string name)
Reloads an already-loaded Qore module subject to code injection at run-time into Qore; the module's c...
int strtoint(string num, softint base=10)
parses a string representing a number in a configurable base and returns the integer ...
const SIGWAITING
SIGWAITING.
Definition: ql_misc.dox.h:2095
any call_function_args(string name, *softlist vargs)
Calls a function and returns the return value, using the optional second argument as a list of argume...
const CD_NUM_REF
code for decoding numeric character references to symbols
Definition: ql_misc.dox.h:1936
bool existsFunction(string name)
Returns True if the function exists in the current program's function name space. ...
string get_class_name(object obj)
Returns the class name of the object passed.
string backquote(string cmd, *reference rc)
Executes a process and returns a string of the output (stdout only)
string encode_url(string url, softbool encode_all=False)
Encodes URLs by substituting '%' characters with '%25', spaces (' ') with '%20', and non-ascii charac...
const SIGINT
SIGINT.
Definition: ql_misc.dox.h:2041
*int get_word_16_lsb(string str, softint offset=0)
Returns the 16-bit integer value at the given 2-byte offset (the first value is at offset 0) or NOTHI...
list get_qore_option_list()
Returns a list of hashes giving information about Qore library options for the current build...
const CD_ALL
code for decoding everything
Definition: ql_misc.dox.h:1924
const NameToSignal
maps signal names to signal values
Definition: ql_misc.dox.h:1967
string decode_uri_request(string uri)
Decodes percent-encoded codes in a URI path and converts "+" signs in the query component to spaces a...
const SIGXFSZ
SIGXFSZ.
Definition: ql_misc.dox.h:2101
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:2
string get_ex_pos(hash ex)
returns a descriptive string for an exception location; the source and offset information will also b...
list getModuleList()
Returns a list of hashes describing the currently-loaded Qore modules.
hash hash(object obj)
Returns a hash of an object's members.
const SIGIOT
SIGIOT.
Definition: ql_misc.dox.h:2045
string makeBase64String(string str, softint maxlinelen=-1)
Returns a base64-encoded representation of a string.
*int get_word_64(string str, softint offset=0)
Returns the 64-bit integer value at the given 8-byte offset (the first value is at offset 0) or NOTHI...
bool has_key(hash h, string key)
Returns True if the given key exists in the hash (does not necessarily have to have a value assigned)...
const SIGPIPE
SIGPIPE.
Definition: ql_misc.dox.h:2057
const SIGCANCEL
SIGCANCEL.
Definition: ql_misc.dox.h:2021
hash getModuleHash()
Returns a hash of hashes describing the currently-loaded Qore modules; the top-level hash keys are th...
hash get_qore_library_info()
Returns a hash of library build and version info.
const CE_NONASCII
code for encoding all non-ASCII symbols as numeric character references
Definition: ql_misc.dox.h:1888
const SIGXRES
SIGXRES.
Definition: ql_misc.dox.h:2103
const SIGTHAW
SIGTHAW.
Definition: ql_misc.dox.h:2077
const SIGLOST
SIGLOST.
Definition: ql_misc.dox.h:2053