All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Thought dump. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 02:13, 26 August 2024 Jwo talk contribs created page Yucky code dump (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...") Tag: Visual edit