Visual Computing Library
|
Utility concept that is evaluated true the Range R has a value_type that is exactly T. More...
#include <vclib/concepts/ranges/range.h>
Utility concept that is evaluated true the Range R has a value_type that is exactly T.
This concept is useful when you need to check that a range has a value_type that is exactly T, and not convertible to T. When this concept is satisfied the following code will always compile:
R | The range type. |
T | The value type. |