Item 41: Consider pass by value for copyable parameters that are cheap to move and always copied
E1750915
UNEXPLORED
"Item 41: Consider pass by value for copyable parameters that are cheap to move and always copied" is a guideline from Scott Meyers’ *Effective Modern C++* that advises using pass-by-value with move semantics as a simpler, often more efficient alternative to pass-by-const-reference in specific parameter-passing scenarios.
All labels observed (1)
| Label | Occurrences |
|---|---|
| Item 41: Consider pass by value for copyable parameters that are cheap to move and always copied canonical | 1 |
Referenced by (1)
Full triples — surface form annotated when it differs from this entity's canonical label.
Effective Modern C++
→
hasPart
→
Item 41: Consider pass by value for copyable parameters that are cheap to move and always copied
ⓘ