Reflect module
This module allows you to convert primitive Kaya data types to a representation which may be inspected and edited directly within Kaya, and then convert this representation back again. This capability can then be used to save Kaya values persistently as the Pickle does, or to allow arbitrary Kaya values to be interactively constructed by the application user.
Data types
- Reflect::Data - Data value, reflected as a kaya data structure.
Functions
- Void dump(a val) - Print any value as a string
- Data reflect(a value) - Convert a value into a data representation of that value.
- a reify(Data val) - Convert a data representation back to the represented value.