mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-03-25 02:58:39 +00:00
This avoids a redundant std::string construction if a key doesn't exist in the map already. e.g. data[key] requires constructing a new default instance of the value in the map (but this is wasteful, since we're already setting something into the map over top of it).