KrkDict Struct Reference
Flexible mapping type. More...
#include <object.h>
Inheritance diagram for KrkDict:

Public Member Functions | |
| KrkValue | krk_dict_of (int argc, const KrkValue argv[], int hasKw) |
| Create a dict object. | |
Public Member Functions inherited from KrkInstance | |
| KrkInstance * | krk_newInstance (KrkClass *_class) |
| Create a new instance of the given class. More... | |
Data Fields | |
| KrkTable | entries |
| The actual table of values in the dict. | |
Data Fields inherited from KrkInstance | |
| KrkClass * | _class |
| Type. | |
| KrkTable | fields |
| Attributes table. | |
Data Fields inherited from KrkObj | |
| uint16_t | type |
| Tag indicating core type. | |
| uint16_t | flags |
| General object flags, mostly related to garbage collection. | |
| uint32_t | hash |
| Cached hash value for table keys. | |
| struct KrkObj * | next |
| Invasive linked list of all objects in the VM. | |
Protected Attributes | |
| KrkInstance | inst |
| Base. | |
Protected Attributes inherited from KrkInstance | |
| KrkObj | obj |
| Base. | |
Detailed Description
Flexible mapping type.
Provides key-to-value mappings as a first-class object type.
The documentation for this struct was generated from the following files:
Public Member Functions inherited from