lambda type
This commit is contained in:
parent
349b986cad
commit
abbe7dbc8f
1 changed files with 2 additions and 2 deletions
|
@ -63,8 +63,8 @@ using map = std::map<const std::string, node>;
|
|||
using array = std::vector<node>;
|
||||
```
|
||||
|
||||
`mstch::node` is a `boost::variant` that can hold a `std::string`, `int`, `double`,
|
||||
`bool`, lambda expression or a `std::shared_ptr` to a `mstch::object`
|
||||
`mstch::node` is a `boost::variant` that can hold a `std::string`, `int`,
|
||||
`double`, `bool`, `mstch::lambda` or a `std::shared_ptr<mstch::object>`
|
||||
(see below), also a map or an array recursively. Essentially it works just like
|
||||
a JSON object.
|
||||
|
||||
|
|
Loading…
Reference in a new issue