You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see. It is common in many languages and so it will be great to have it.
Also I like that naming. I think I will deprecate both GetValueXX and add []/ASXX
Use the [] operator to shorten the code. E.g. instead of:
auto width = resolution->GetProperty("width")->GetValueNumber();
i would prefer something short(er) like:
auto width = resolution["width"].AsInt();
This was just a single example, this should work where ever possible.
The text was updated successfully, but these errors were encountered: