Yucky code dump

From Thought dump
Revision as of 02:13, 26 August 2024 by Jwo (talk | contribs) (Created page with "== Mildly yucky == === Unnecessary <code>str::string</code> instantiations === ==== Getting substrings ==== Don't do this: https://stackoverflow.com/a/55210196 (applies to the last revision from 2019) <code>auto str = std::string(input.begin() + input.find(' '), input.end());</code> Do this: <code>auto str = std::string_view(input.begin() + input.find(' '), input.end());</code> That neatly avoids allocating space for the substring and then copying the substring th...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Mildly yucky

Unnecessary str::string instantiations

Getting substrings

Don't do this: https://stackoverflow.com/a/55210196 (applies to the last revision from 2019)

auto str = std::string(input.begin() + input.find(' '), input.end());

Do this:

auto str = std::string_view(input.begin() + input.find(' '), input.end());

That neatly avoids allocating space for the substring and then copying the substring there.