move-semantics

Tag

Cards List
#move-semantics

Move in C++ without a std:move

Hacker News Top · 2026-09-01 Cached

The article explains how C++23 allows implicit moves in certain cases, reducing the need for std::move and improving performance via return value optimization and copy elision.

0 favorites 0 likes
#move-semantics

const_cast: A Necessary Evil

Lobsters Hottest · 2026-07-29 Cached

The article explains why const_cast is sometimes necessary in C++, specifically for moving objects out of a std::priority_queue, and how to do it safely.

0 favorites 0 likes
#move-semantics

Capture Clauses as Effects

Lobsters Hottest · 2026-07-21 Cached

This article examines explicit capture clauses in Rust as an alternative to move expressions, proposing a first-class language feature for converting references to owned values and analyzing various closure capture patterns.

0 favorites 0 likes
← Back to home

Submit Feedback