Searched defs:is_forward_iterable (Results 1 – 1 of 1) sorted by relevance
64 struct is_forward_iterable : public mpl::false_ {}; struct67 struct is_forward_iterable<T const> : public is_forward_iterable<T> {}; struct70 struct is_forward_iterable<T&> : public is_forward_iterable<T> {}; struct73 struct is_forward_iterable< T [N] > : public mpl::true_ {}; struct76 struct is_forward_iterable< std::vector<T, A> > : public mpl::true_ {}; struct79 struct is_forward_iterable< std::list<T, A> > : public mpl::true_ {}; struct82 struct is_forward_iterable< std::map<K, V, C, A> > : public mpl::true_ {}; struct85 struct is_forward_iterable< std::set<K, C, A> > : public mpl::true_ {}; struct90 struct is_forward_iterable< std::string > : public mpl::true_ {}; struct179 struct is_forward_iterable { struct[all …]