We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For C++ highlevel: A Mixed column with cells being subtables, poses some challenge. So for this we could make the following API:
// Create a subtable of the type T at the specific cell createSubtable()
// Get the subtable of type T at the specific cell getSubtable() (return NULL if not compatible with type T)
// Return true if the cell is of type T bool isSubtable() (helper for above)
// Schema not defined at compile time, dynamic during runtime: "DynamicSchemaTable" getSubtable() + methods for looking at the spec and updating it
The text was updated successfully, but these errors were encountered:
Some of this has been done (maybe all of it).
Note: Names are not supposed to be camelCased in our C++ API.
Sorry, something went wrong.
No branches or pull requests
For C++ highlevel:
A Mixed column with cells being subtables, poses some challenge. So for this we could make the following API:
// Create a subtable of the type T at the specific cell
createSubtable()
// Get the subtable of type T at the specific cell
getSubtable() (return NULL if not compatible with type T)
// Return true if the cell is of type T
bool isSubtable() (helper for above)
// Schema not defined at compile time, dynamic during runtime:
"DynamicSchemaTable" getSubtable()
+ methods for looking at the spec and updating it
The text was updated successfully, but these errors were encountered: