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