Replies: 5 comments
|
im now trying to get unknown_read/unknown_write to just read/dump values from the "self" object but lambdas arent supported for those, only member function and object pointers... |
|
What kind of wrapper is this? Consider how the wrapper's purpose should be seen in JSON. For example, Lambdas are allowed for self and for Can you provide a simple code example of what your wrapper is like and what its purpose is? Take a look at |
|
I actually tried just exposing the inside vector but I kept getting strange errors I couldn't fix like mangled_name not defined (which I couldn't fix even by adding "name" to meta for the inner key/collection type, I think it's because those types were templates ?) |
|
Use |
|
I've converted this to a discussion until more information can be given. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
i have some types that are just a wrapper around vector, map, etc
i thought just passing through cbegin/cend/begin/end/at/operator[] key_type and value_type would be enough but it doesn't seem to be
the internal collection member is private so i can't just passthrough that one via a lambda
All reactions