dereferenced
Dereferenced is a term used to describe the result of dereferencing. In computing, to dereference means to access the value stored at the memory location addressed by a pointer or reference. The dereferenced value is the object located at that address, not the address itself.
In languages that expose pointers, dereferencing is performed with an operator. In C and C++, the unary
Many high-level languages abstract away pointers and use references. Accessing a field or invoking a method
Rust uses explicit dereferencing with * for references and raw pointers; dereferencing raw pointers is unsafe and
Conceptually, the term "dereferenced" can describe either the action or the resulting value: a dereferenced pointer