version 0.4.1
Ikarus::Concepts::SmartPointer Concept Reference

Concept to check if the type is either a unique_ptr or a shared_ptr. More...

#include <ikarus/utils/concepts.hh>

Concept definition

template<typename T>
concept Ikarus::Concepts::SmartPointer = traits::isSharedPtr<T>::value || traits::isUniquePtr<T>::value
Concept to check if the type is either a unique_ptr or a shared_ptr.
Definition: utils/concepts.hh:623

Detailed Description

Concept to check if the type is either a smart pointer or a raw pointer.

Template Parameters
TThe type to be checked.