Home
last modified time | relevance | path

Searched defs:is_forward_iterator (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/container/detail/
Diterators.hpp731 struct is_forward_iterator struct
733 …static const bool value = is_same<typename T::iterator_category, std::forward_iterator_tag>::value;
737 struct is_forward_iterator<T, false> struct
739 static const bool value = false;
/third_party/boost/boost/static_string/
Dstatic_string.hpp155 struct is_forward_iterator : std::false_type { }; struct
158 struct is_forward_iterator<T, typename std::enable_if<is_iterator<T>::value && struct