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

Determines whether a type can be used in unary operator * expressions. More...

#include <operators.hpp>

Concept definition

template<class T>
concept sl::concepts::dereferencable = requires(T t) { *t; }
Determines whether a type can be used in unary operator * expressions.
Definition: operators.hpp:725

Detailed Description

Determines whether a type can be used in unary operator * expressions.

Template Parameters
TThe type to check