python-on-a-chip online compiler

Dependencies:   mbed TSI

Embed: (wiki syntax)

« Back to documentation index

PmDict_s Struct Reference

PmDict_s Struct Reference

Dict. More...

#include <dict.h>

Data Fields

PmObjDesc_t od
 object descriptor
uint16_t length
 number of key,value pairs in the dict
pSeglist_t d_keys
 ptr to seglist containing keys
pSeglist_t d_vals
 ptr to seglist containing values

Detailed Description

Dict.

Contains ptr to two seglists, one for keys, the other for values; and a length, the number of key/value pairs.

Definition at line 28 of file dict.h.


Field Documentation

ptr to seglist containing keys

Definition at line 35 of file dict.h.

ptr to seglist containing values

Definition at line 37 of file dict.h.

uint16_t length

number of key,value pairs in the dict

Definition at line 33 of file dict.h.

object descriptor

Definition at line 31 of file dict.h.