\begin{DoxyRefList} \item[Module \mbox{\hyperlink{group__date__and__time__functions}{date\+\_\+and\+\_\+time\+\_\+functions}} ]\label{bug__bug000004}% \Hypertarget{bug__bug000004}% the {\ttfamily \char`\"{}u\char`\"{}} and {\ttfamily \char`\"{}uu\char`\"{}} format codes work with milliseconds and not microseconds since they were implemented before qore supported microsecond time resolution; this cannot be changed without breaking backwards-\/compatibility \label{bug__bug000005}% \Hypertarget{bug__bug000005}% currently only English month abbreviations are accepted in the date/time mask \item[Member \mbox{\hyperlink{group__date__and__time__functions_gad5572fcb49964bfe3005e144da579361}{Qore\+::format\+\_\+date}} (string format, date dt)]\label{bug__bug000006}% \Hypertarget{bug__bug000006}% there is no locale support; day and month names and abbreviations are only returned in English \item[Member \mbox{\hyperlink{group__string__functions_ga25264bfb9950ac66862db9b4a32eeee8}{Qore\+::rtrim}} (string str, \+\_\+\+\_\+7\+\_\+ string chars)]\label{bug__bug000002}% \Hypertarget{bug__bug000002}% it is not possible to trim multi-\/byte characters from strings using this function; each byte is treated as a character. No encoding conversions are done even if the {\itshape chars} argument has a different \mbox{\hyperlink{character_encoding}{character encoding}} than the {\itshape str} argument. \item[Member \mbox{\hyperlink{group__string__functions_gaf46773aba9e3ea83b31c60ae0bc22c73}{Qore\+::rtrim}} (reference$<$ string $>$ str, \+\_\+\+\_\+7\+\_\+ string chars)]\label{bug__bug000003}% \Hypertarget{bug__bug000003}% it is not possible to trim multi-\/byte characters from strings using this function; each byte is treated as a character. No encoding conversions are done even if the {\itshape chars} argument has a different \mbox{\hyperlink{character_encoding}{character encoding}} than the {\itshape str} argument. \item[Member \mbox{\hyperlink{class_qore_1_1zzz8datezzz9_aeff0dd69a9ef8f228b54ba5543b2e3c6}{Qore\+::zzz8datezzz9\+::format}} (string format)]\label{bug__bug000001}% \Hypertarget{bug__bug000001}% there is no locale support; day and month names and abbreviations are only returned in English \item[Page \mbox{\hyperlink{signal_handling}{Signal Handling}} ]\label{bug__bug000008}% \Hypertarget{bug__bug000008}% it seems that \mbox{\hyperlink{group__signal__constants_gaa481ec3f81e7c5d8009706eedea394ff}{SIGWINCH}} and \mbox{\hyperlink{group__signal__constants_gaa64b81edb492442c84993c3e2d60999a}{SIGINFO}} cannot be handled on Darwin in Qore\textquotesingle{}s dedicated signal-\/handling thread; the signals are never delivered to Qore\textquotesingle{}s signal handling thread for some reason despite setting the internal signal masks appropriately. These signals can be handled normally in the main thread on Darwin (in other programs using traditional non-\/threading signal APIs), but do not work with Qore (on Darwin only when using the pthread\+\_\+sigmask() and a dedicated signal-\/handling thread), possibly due to a bug related to signal handling and threading on Darwin. \item[Page \mbox{\hyperlink{character_encoding}{Strings and Character Encoding}} ]\label{bug__bug000007}% \Hypertarget{bug__bug000007}% With the exception of the classes above that explicitly support UTF-\/16 data, BOMs are ignored and all UTF-\/16 data is assumed to be big-\/endian; little-\/endian UTF-\/16-\/encoded data, even with a correct BOM, will not be processed correctly in Qore (in this case use the {\ttfamily UTF-\/16\+LE} encoding specifically) \end{DoxyRefList}
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
26 namespace DataProvider {
28 class QoreIntDataType : public QoreIntDataTypeBase {
29 
30 public:
32  constructor(*hash<auto> options, *hash<auto> tags) ;
33 
34 };
35 };
*hash< auto > tags
type tags
Definition: AbstractDataProviderType.qc.dox.h:203
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:200
describes a data type based on int types with validation for parsing strings when used with soft type...
Definition: QoreIntDataTypeBase.qc.dox.h:28
describes a data type based on int
Definition: QoreIntDataType.qc.dox.h:28
constructor(*hash< auto > options, *hash< auto > tags)
creates the object
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:27