Visual Computing Library
Loading...
Searching...
No Matches
vcl::IsPointer Concept Reference

The IsPointer concept is satisfied if T is a Pointer, even if the type T is a reference to a pointer. More...

#include <vclib/concepts/pointers.h>

Concept definition

template<typename T>
concept vcl::IsPointer = std::is_pointer_v<RemoveRef<T>>
The IsPointer concept is satisfied if T is a Pointer, even if the type T is a reference to a pointer.
Definition pointers.h:53

Detailed Description

The IsPointer concept is satisfied if T is a Pointer, even if the type T is a reference to a pointer.