32 #ifndef _QORE_QORETYPE_H 34 #define _QORE_QORETYPE_H 48 DLLEXPORT
extern QoreNumberNode* ZeroNumber, * InfinityNumber, * NaNumber, * piNumber;
50 DLLEXPORT
extern QoreString NothingTypeString, NullTypeString, TrueString,
51 FalseString, EmptyHashString, EmptyListString;
53 DLLEXPORT
extern const QoreTypeInfo* anyTypeInfo,
69 *runTimeClosureTypeInfo,
70 *callReferenceTypeInfo,
80 *softAutoListTypeInfo,
83 *bigIntOrFloatTypeInfo,
84 *bigIntFloatOrNumberTypeInfo,
85 *floatOrNumberTypeInfo,
87 *bigIntOrNothingTypeInfo,
88 *floatOrNothingTypeInfo,
89 *numberOrNothingTypeInfo,
90 *stringOrNothingTypeInfo,
91 *boolOrNothingTypeInfo,
92 *binaryOrNothingTypeInfo,
93 *objectOrNothingTypeInfo,
94 *dateOrNothingTypeInfo,
95 *hashOrNothingTypeInfo,
96 *autoHashOrNothingTypeInfo,
97 *listOrNothingTypeInfo,
98 *autoListOrNothingTypeInfo,
99 *nullOrNothingTypeInfo,
100 *codeOrNothingTypeInfo,
101 *dataOrNothingTypeInfo,
102 *referenceOrNothingTypeInfo,
104 *softBigIntOrNothingTypeInfo,
105 *softFloatOrNothingTypeInfo,
106 *softNumberOrNothingTypeInfo,
107 *softBoolOrNothingTypeInfo,
108 *softStringOrNothingTypeInfo,
109 *softDateOrNothingTypeInfo,
110 *softListOrNothingTypeInfo,
111 *softAutoListOrNothingTypeInfo,
112 *timeoutOrNothingTypeInfo;
172 enum qore_type_result_e {
183 DLLEXPORT
int testObjectClassAccess(
const QoreObject* obj,
const QoreClass* classtoaccess);
185 DLLEXPORT
const QoreClass* typeInfoGetUniqueReturnClass(
const QoreTypeInfo* typeInfo);
186 DLLEXPORT
bool typeInfoHasType(
const QoreTypeInfo* typeInfo);
187 DLLEXPORT
const char* typeInfoGetName(
const QoreTypeInfo* typeInfo);
188 DLLEXPORT qore_type_result_e typeInfoAcceptsType(
const QoreTypeInfo* typeInfo,
const QoreTypeInfo* otherTypeInfo);
189 DLLEXPORT qore_type_result_e typeInfoReturnsType(
const QoreTypeInfo* typeInfo,
const QoreTypeInfo* otherTypeInfo);
191 DLLEXPORT
const QoreTypeInfo* qore_get_or_nothing_type(
const QoreTypeInfo* typeInfo);
194 DLLEXPORT
const QoreTypeInfo* qore_get_complex_hash_type(
const QoreTypeInfo* valueTypeInfo);
196 DLLEXPORT
const QoreTypeInfo* qore_get_complex_hash_or_nothing_type(
const QoreTypeInfo* valueTypeInfo);
198 DLLEXPORT
const QoreTypeInfo* qore_get_complex_list_type(
const QoreTypeInfo* valueTypeInfo);
200 DLLEXPORT
const QoreTypeInfo* qore_get_complex_list_or_nothing_type(
const QoreTypeInfo* valueTypeInfo);
202 DLLEXPORT
const QoreTypeInfo* qore_get_complex_softlist_type(
const QoreTypeInfo* valueTypeInfo);
204 DLLEXPORT
const QoreTypeInfo* qore_get_complex_softlist_or_nothing_type(
const QoreTypeInfo* valueTypeInfo);
206 DLLEXPORT
const QoreTypeInfo* qore_get_complex_reference_type(
const QoreTypeInfo* valueTypeInfo);
208 DLLEXPORT
const QoreTypeInfo* qore_get_complex_reference_or_nothing_type(
const QoreTypeInfo* valueTypeInfo);
211 DLLEXPORT
const QoreTypeInfo* qore_get_type_from_string(
const char* str);
213 #endif // _QORE_QORETYPE_H Qore's arbitrary-precision number value type, dynamically-allocated only, reference counted...
Definition: QoreNumberNode.h:51
Qore's floating-point value type, dynamically-allocated only, reference counted.
Definition: QoreFloatNode.h:39
This is the hash or associative list container type in Qore, dynamically allocated only...
Definition: QoreHashNode.h:50
DLLEXPORT QoreBoolFalseNode False
Qore's boolean false value.
The base class for all value and parse types in Qore expression trees.
Definition: AbstractQoreNode.h:54
Qore's string type supported by the QoreEncoding class.
Definition: QoreString.h:82
Qore's string value type, reference counted, dynamically-allocated only.
Definition: QoreStringNode.h:50
DLLEXPORT QoreBoolTrueNode True
Qore's boolean true value.
This is the list container type in Qore, dynamically allocated only, reference counted.
Definition: QoreListNode.h:52
Qore's parse tree/value type for date-time values, reference-counted, dynamically-allocated only...
Definition: DateTimeNode.h:45
defines a Qore-language class
Definition: QoreClass.h:214
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:112
the implementation of Qore's object data type, reference counted, dynamically-allocated only ...
Definition: QoreObject.h:62
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:47
DLLEXPORT void ref() const
increments the reference count
int16_t qore_type_t
used to identify unique Qore data and parse types (descendents of AbstractQoreNode) ...
Definition: common.h:71
this class implements Qore's 64-bit integer data type, reference-counted, dynamically-allocated only ...
Definition: QoreBigIntNode.h:41