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
Currently we move resource data around via a std::multimap. This has worked to date however we are finding lots of duplicated String::to_string/to_bytes, find... calls.
Reduce duplication with a light-weight wrapper.
Resource resource( const std::multimap< std::string, std::string >& values );
resource.set( "name", string or bytes value );
resource.get( "name" ); //returning string or bytes value.
The text was updated successfully, but these errors were encountered:
Currently we move resource data around via a std::multimap. This has worked to date however we are finding lots of duplicated
String::to_string/to_bytes
, find... calls.Reduce duplication with a light-weight wrapper.
The text was updated successfully, but these errors were encountered: