Visual Computing Library
Loading...
Searching...
No Matches
vcl::comp::HasPointersOfType Concept Reference

The HasPointersOfType concept checks whether a component T stores pointers of a type (element) R. More...

Concept definition

template<typename T, typename R>
obj.template pointers<RemoveRef<R>>();
}
The HasPointersOfType concept checks whether a component T stores pointers of a type (element) R.
Definition component.h:181
The HasReferencesOfType concept checks whether a component T stores references (pointers or indices) ...
Definition component.h:152

Detailed Description

The HasPointersOfType concept checks whether a component T stores pointers of a type (element) R.

The constraints are the same of vcl::comp::HasReferencesOfType, but this concept requires the component stores only pointers (not indices).

Template Parameters
Tthe type to be evaluated.
Rthe type of the pointers.