These data types are meant for use in the SOOP Library, these types include the 4 basic types that Euphoria supports by default, as well as a special type, to show how to implement the pointer system with SOOP, and the Data Type System.
The ATOM data type allows for Atomic data to be stored in a SOOP Member. It works exactly the same as a normal Euphoria atom type.
See Also: INTEGER, OBJECT, SEQUENCE, STRING
The INTEGER data type allows for Integer data to be stored in a SOOP Member. It works exactly the same as a normal Euphoria integer type.
See Also: ATOM, OBJECT, SEQUENCE, STRING
The OBJECT data type allows for any of the 3 main data types in Euphoria to be assigned to, just like with it's Euphoria counterpart.
See Also: ATOM, INTEGER, SEQUENCE, STRING
The SEQUENCE data type allows for Sequence data to be stored in a SOOP Member. It works exactly the same as a normal Euphoria sequence type.
See Also: ATOM, INTEGER, OBJECT, STRING
This is the custom Data Type, that shows how pointers can be useful. It allows for a Normal C-Style string to be stored into memory, and therefore, allows users to store and retrive strings into it, or retrive the Memory Address of the string to pass along to C/C++ Functions that require it.
See Also: ATOM, INTEGER, OBJECT, SEQUENCE