All public logs

From OPeNDAP Documentation
⧼opendap2-jumptonavigation⧽

Combined display of all available logs of OPeNDAP Documentation. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 23:26, 22 February 2024 Jimg talk contribs created page More about strings - passing strings to functions (Created page with "== Is it better to pass as a const reference, or by value and then use std::move()? == It depends. Here's a concise explanation from Stack Overflow. There are three cases: (0): Creature(const std::string &name) : m_name{name} { } A passed lvalue binds to name, then is copied into m_name. A passed rvalue binds to name, then is copied into m_name. (1): Creature(std::string name) : m_name{std::move(name)} { } A passed lvalue is copied into name, t...")