VCTR
Loading...
Searching...
No Matches
vctr::has::init Concept Reference

Constrains the type to have a member function init that takes a void pointer and a size_t. More...

Concept definition

template<class T>
concept vctr::has::init = requires (T& t, void* ptr, size_t s) { t.init (ptr, s); }
Constrains the type to have a member function init that takes a void pointer and a size_t.
Definition: GenericConcepts.h:32

Detailed Description

Constrains the type to have a member function init that takes a void pointer and a size_t.