noun as in strong fondness

Word Combinations

Example:In C++, a lvalue reference should be bound to an lvalue to allow modification of the referenced value, like `int& ref = value;`.

Definition:A reference to an lvalue, which binds to an lvalue and can be used to modify the value of the lvalue it references.

From lvalue reference

Example:When a function returns an lvalue, it may be implicitly converted to an rvalue reference to allow the function to return a temporary object.

Definition:The process of converting an lvalue into an rvalue, which typically does not involve storing to memory but rather refers to a temporary value created from the lvalue.

From lvalue to rvalue conversion