32 #ifndef _QORE_QORETYPE_H 34 #define _QORE_QORETYPE_H 46 DLLEXPORT
extern QoreNumberNode* ZeroNumber, * InfinityNumber, * NaNumber, * piNumber;
48 DLLEXPORT
extern QoreString NothingTypeString, NullTypeString, TrueString,
49 FalseString, EmptyHashString, EmptyListString;
51 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;
154 enum qore_type_result_e {
165 DLLEXPORT
int testObjectClassAccess(
const QoreObject* obj,
const QoreClass* classtoaccess);
167 DLLEXPORT
const QoreClass* typeInfoGetUniqueReturnClass(
const QoreTypeInfo* typeInfo);
168 DLLEXPORT
bool typeInfoHasType(
const QoreTypeInfo* typeInfo);
169 DLLEXPORT
const char* typeInfoGetName(
const QoreTypeInfo* typeInfo);
170 DLLEXPORT qore_type_result_e typeInfoAcceptsType(
const QoreTypeInfo* typeInfo,
const QoreTypeInfo* otherTypeInfo);
171 DLLEXPORT qore_type_result_e typeInfoReturnsType(
const QoreTypeInfo* typeInfo,
const QoreTypeInfo* otherTypeInfo);
173 DLLEXPORT
const QoreTypeInfo* qore_get_or_nothing_type(
const QoreTypeInfo* typeInfo);
176 DLLEXPORT
const QoreTypeInfo* qore_get_complex_hash_type(
const QoreTypeInfo* valueTypeInfo);
178 DLLEXPORT
const QoreTypeInfo* qore_get_complex_hash_or_nothing_type(
const QoreTypeInfo* valueTypeInfo);
180 DLLEXPORT
const QoreTypeInfo* qore_get_complex_list_type(
const QoreTypeInfo* valueTypeInfo);
182 DLLEXPORT
const QoreTypeInfo* qore_get_complex_list_or_nothing_type(
const QoreTypeInfo* valueTypeInfo);
184 DLLEXPORT
const QoreTypeInfo* qore_get_complex_softlist_type(
const QoreTypeInfo* valueTypeInfo);
186 DLLEXPORT
const QoreTypeInfo* qore_get_complex_softlist_or_nothing_type(
const QoreTypeInfo* valueTypeInfo);
188 DLLEXPORT
const QoreTypeInfo* qore_get_complex_reference_type(
const QoreTypeInfo* valueTypeInfo);
190 DLLEXPORT
const QoreTypeInfo* qore_get_complex_reference_or_nothing_type(
const QoreTypeInfo* valueTypeInfo);
193 DLLEXPORT
const QoreTypeInfo* qore_get_type_from_string(
const char* str);
195 #endif // _QORE_QORETYPE_H Qore's arbitrary-precision number value type, dynamically-allocated only, reference counted...
Definition: QoreNumberNode.h:51
This is the hash or associative list container type in Qore, dynamically allocated only...
Definition: QoreHashNode.h:50
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:81
Qore's string value type, reference counted, dynamically-allocated only.
Definition: QoreStringNode.h:50
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:237
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:262
the implementation of Qore's object data type, reference counted, dynamically-allocated only ...
Definition: QoreObject.h:61
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:46
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:70