Function dereference
Synopsis
#include <src/entt/meta/adl_pointer.hpp>
static decltype(auto) dereference(const Type &value)
Description
Uses the default ADL based lookup method to resolve the call.
- Parameters
value
- A pointer-like object.- Returns
- The value returned from the dereferenced pointer.
Mentioned in
- Resource Management / The resource, the loader and the cache
- Runtime Reflection System / Pointer-like types
Source
Lines 31-33 in src/entt/meta/adl_pointer.hpp.
static decltype(auto) dereference(const Type &value) {
return dereference_meta_pointer_like(value);
}