version 0.4.1
Ikarus::traits::Pointer Concept Reference

Concept to check if a type is a pointer or nullptr_t. More...

#include <ikarus/utils/traits.hh>

Concept definition

template<typename T>
concept Ikarus::traits::Pointer = std::is_pointer_v<T> || std::is_same_v<T, std::nullptr_t>
Concept to check if a type is a pointer or nullptr_t.
Definition: traits.hh:23

Detailed Description

Template Parameters
TType to check.