table valuemap

Brief

The value map.

Details

To create an instance of the valuemap table please use core.valuemap() method.

The value map is similar to the regular lua table. You can get or put boolean, string or numeric data to the value map fields:

map = core.valuemap();

map.a = 10;

a = map.a;

This class is used to pass data to and to get data from the terminal table in the strategies.

The value map can also contains the list of other valuemaps.

Public Methods

append

Adds the value map to the list of children valuemaps.

back