Checks if a type is a container that can be reversed. More...
Inherits gears::concepts::And< Container< T >, TraitOf< detail::is_reversible, T > >.
A Unary concept that checks if a type is a container that can be reversed.
It must meet the Container concept. In addition to that, it must have the following typedefs defined:
reverse_iterator
const_reverse_iterator
and the following expressions must be valid:
Where x is an instance of T.
T | Type to check |
Definition at line 253 of file container.hpp.