C++ question

I'm reading SFML's audio module and saw this sentence

By using our asset manager, we can be sure that our resource will not be accidentally
deleted or moved in memory


what does "moved in memory" means?

TIA for answers
move constructors for example move data from one chunk of memory to another.
@codekiddy
hi thanks for the reply.
could that also mean operator=()?
note that operator=() can be an assignment and move assignment operator.

so if operator=() is a move assignment operator then yes.

anything that involves move semantics, moves data in memory.
i see thanks, asnwered all my needs
thank you @codekiddy
Topic archived. No new replies allowed.