FITFLOP
Home

return-value-optimization (2 post)


posts by category not found!

NRVO vs early return for types not benefitting from move semantics (GCC 14 -Wnrvo)

Understanding GCCs Wnrvo Warning When NRVO and Early Return Clash The GCC compiler in version 14 introduced a new warning Wnrvo This warning highlights a potent

2 min read 05-10-2024 25
NRVO vs early return for types not benefitting from move semantics (GCC 14 -Wnrvo)
NRVO vs early return for types not benefitting from move semantics (GCC 14 -Wnrvo)

The move semantics and time complexity of nested std::vector<std::vector<std::string>> rvalue assignment

Understanding Move Semantics and Time Complexity of Nested std vector Assignment When working with nested std vector std vector std string in C understanding th

2 min read 03-10-2024 29
The move semantics and time complexity of nested std::vector<std::vector<std::string>> rvalue assignment
The move semantics and time complexity of nested std::vector<std::vector<std::string>> rvalue assignment