class documentation
class SType(IntEnum):
Type definitions for supported interpreter types.
| Method | __repr__ |
Nice representation of a data type name. |
| Method | __str__ |
Nice representation of a data type name. |
| Method | unquote |
Return the unquoted equivalet type of a quoted type. |
| Class Variable | t |
Boolean data type. |
| Class Variable | t |
False data type. |
| Class Variable | t |
JSON / dictionary data type. |
| Class Variable | t |
Lambda expression data type. |
| Class Variable | t |
List of SSymbol's data type. |
| Class Variable | t |
Beginning of a list. Internally used only. |
| Class Variable | t |
Ending of a list. Internally used only. |
| Class Variable | t |
List of SSymbol's data type. It it not executed. |
| Class Variable | t |
NIL data type. |
| Class Variable | t |
Number data type (integer or float). |
| Class Variable | t |
String data type. |
| Class Variable | t |
Symbol data type. |
| Class Variable | t |
Quoted data type. It is not executed. |
| Class Variable | t |
True (ie. not nil) data type. |
Return the unquoted equivalet type of a quoted type.
| Returns | |
SType | The unquotde version of a quoted type. If the type is not a quoted type then return the same type. |