Simple-Utility v2.3.1
Loading...
Searching...
No Matches
sl::concepts::pointer Concept Reference

Checks whether the T denotes a (possibly cv-qualified) pointer type. More...

#include <stl_extensions.hpp>

Concept definition

template<class T>
concept sl::concepts::pointer = std::is_pointer_v<T>
Checks whether the T denotes a (possibly cv-qualified) pointer type.
Definition: stl_extensions.hpp:35

Detailed Description

Checks whether the T denotes a (possibly cv-qualified) pointer type.

This is the concept version of std::is_pointer.

See also
https://en.cppreference.com/w/cpp/types/is_pointer
Template Parameters
TThe type to check.