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
We implement several types of value conversions in the //common/cpp library:
Value
pp::Var
emscripten::val
The task is to make sure that all of these conversions have a well-defined behavior (ideally - error out) in the corner cases, like:
double
Number
String
The text was updated successfully, but these errors were encountered:
emaxx-google
No branches or pull requests
We implement several types of value conversions in the //common/cpp library:
Value
objects and regular C++ types;Value
objects and Native Clientpp::Var
objects (only in NaCl builds);Value
objects and Emscriptenemscripten::val
objects.The task is to make sure that all of these conversions have a well-defined behavior (ideally - error out) in the corner cases, like:
double
or JavaScriptNumber
) with a loss of precision, and vice versa;String
).The text was updated successfully, but these errors were encountered: